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