This repository has been archived on 2021-04-24. You can view files and clone it, but cannot push or open issues or pull requests.
game/include/Components/TopLevel/World.hpp

10 lines
152 B
C++
Raw Normal View History

2021-04-12 18:04:25 +03:00
#ifndef _WORLD_H
#define _WORLD_H
struct World : public GameObject {
2021-04-24 13:37:57 +03:00
World() : GameObject("World") {}
2021-04-12 18:04:25 +03:00
};
void registerWorld(lua_State* L);
#endif