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
2021-04-24 13:37:57 +03:00

10 lines
No EOL
152 B
C++

#ifndef _WORLD_H
#define _WORLD_H
struct World : public GameObject {
World() : GameObject("World") {}
};
void registerWorld(lua_State* L);
#endif