Nui Engine
A game engine framework
All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Pages Concepts
World.h
1#pragma once
2#include "Core/Common/CommonHeaders.h"
3#include "Core/Engine/ECS/ECS.h"
4#include "Core/Engine/Components/TransformComponent.h"
5
6namespace Nui
7{
8 // Forward declarations
9 namespace Systems
10 {
11 class TransformSystem;
12 class RenderSystem;
13 }
14
18 class World final : public ECS::Context
19 {
20 friend class AppBase;
21
22 public:
26 World();
27
31 ~World() = default;
32
33 World(const World&) = delete;
34 World(World&&) = delete;
35
36 World operator=(const World&) = delete;
37 World operator=(World&&) = delete;
38
39 private:
43 void OnInit();
44
49 void Update(const F64 dt);
50
54 void OnShutdown();
55
56 private:
60 Systems::TransformSystem* m_transformSystem;
61
65 Systems::RenderSystem* m_renderSystem;
66 };
67}
Base class for all apps in Nui Engine.
Definition AppBase.h:14
The ECS context class manages entities, systems, and events in the ECS framework.
Definition Context.h:17
Definition RenderSystem.h:17
ECS system that handles updating transform components.
Definition TransformSystem.h:30
World class - the main context for the engine.
Definition World.h:19
~World()=default
Default destructor.
World()
World constructor - initializes the ECS context.
Definition World.cpp:9