Nui Engine
A game engine framework
Toggle main menu visibility
Main Page
Namespaces
Namespace List
Concepts
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
w
x
y
~
Functions
a
b
c
d
e
f
g
h
i
l
m
o
p
q
r
s
t
u
w
~
Variables
a
c
d
e
f
h
i
l
m
n
r
s
t
w
x
y
Typedefs
Enumerations
Files
File List
•
All
Classes
Namespaces
Functions
Variables
Typedefs
Enumerations
Enumerator
Pages
Concepts
Loading...
Searching...
No Matches
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
6
namespace
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
};
18
class
World
final :
public
ECS::Context
{
…
};
67
}
Nui::AppBase
Base class for all apps in Nui Engine.
Definition
AppBase.h:14
Nui::ECS::Context
The ECS context class manages entities, systems, and events in the ECS framework.
Definition
Context.h:17
Nui::Systems::RenderSystem
Definition
RenderSystem.h:17
Nui::Systems::TransformSystem
ECS system that handles updating transform components.
Definition
TransformSystem.h:30
Nui::World
World class - the main context for the engine.
Definition
World.h:19
Nui::World::~World
~World()=default
Default destructor.
Nui::World::World
World()
World constructor - initializes the ECS context.
Definition
World.cpp:9
Engine
Core
Engine
World.h
Generated by
1.11.0