NcEngine
NcEcs.h
Go to the documentation of this file.
1
5#pragma once
6
8#include "ncengine/type/EngineId.h"
9
10#include <memory>
11
12namespace nc
13{
14struct SystemEvents;
15
16namespace ecs
17{
18class ComponentRegistry;
19
31class NcEcs : public Module
32{
33 public:
34 explicit NcEcs() noexcept
35 : Module{NcEcsId} {}
36};
37
39auto BuildEcsModule(ComponentRegistry& registry, SystemEvents& events) -> std::unique_ptr<NcEcs>;
40} // namespace ecs
41} // namespace nc
auto BuildEcsModule(ComponentRegistry &registry, SystemEvents &events) -> std::unique_ptr< NcEcs >
Build an NcEcs module instance.
Modules are extensions that provide functionality to the engine.
Definition: Module.h:18
Core collection of data pools and registration information game types.
Definition: ComponentRegistry.h:26
Module managing ComponentRegistry operations.
Definition: NcEcs.h:32
Signals for internal engine events.
Definition: Events.h:14