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