Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
SystemFactory.hpp
1#pragma once
2
3#include <EngineCore/WorldContext/WorldContextSet.hpp>
4
5namespace Grindstone {
6 class EngineCore;
7
8 namespace ECS {
9 using SystemFactory = void(*)(Grindstone::WorldContextSet&);
10 }
11}
Definition EngineCore.hpp:59