Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
All Classes Pages
CSharpSystem.hpp
1#pragma once
2
3#include <entt/entt.hpp>
4
5namespace Grindstone {
6 namespace Scripting {
7 namespace CSharp {
8 void UpdateSystem(entt::registry& registry);
9 void UpdateEditorSystem(entt::registry& registry);
10 }
11 }
12}