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-12 18:04:25 +03:00

12 lines
No EOL
183 B
C++

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