21 lines
241 B
C++
21 lines
241 B
C++
#ifndef BASE
|
|
#define BASE
|
|
|
|
//#include "NodeRenderer.h"
|
|
//#include "MapBlock.h"
|
|
|
|
class NodeManager;
|
|
class BlockManager;
|
|
|
|
extern NodeManager nodeManager;
|
|
extern BlockManager blockManager;
|
|
|
|
|
|
|
|
struct Position2D
|
|
{
|
|
int x;
|
|
int z;
|
|
};
|
|
#endif
|