10 lines
No EOL
152 B
C++
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 |