2022-10-23 17:44:58 -04:00
|
|
|
#ifndef BASE
|
|
|
|
#define BASE
|
2022-10-22 11:03:43 -04:00
|
|
|
|
|
|
|
//#include "NodeRenderer.h"
|
2022-10-23 17:44:58 -04:00
|
|
|
//#include "MapBlock.h"
|
2022-10-22 11:03:43 -04:00
|
|
|
|
2022-10-23 17:44:58 -04:00
|
|
|
class NodeManager;
|
2022-10-28 23:47:09 -04:00
|
|
|
class BlockManager;
|
2022-10-29 14:09:42 -04:00
|
|
|
|
2022-10-22 11:03:43 -04:00
|
|
|
extern NodeManager nodeManager;
|
2022-10-28 23:47:09 -04:00
|
|
|
extern BlockManager blockManager;
|
2022-10-23 17:44:58 -04:00
|
|
|
|
2022-10-22 11:03:43 -04:00
|
|
|
|
2022-10-23 17:44:58 -04:00
|
|
|
struct Position2D
|
|
|
|
{
|
|
|
|
int x;
|
|
|
|
int z;
|
|
|
|
};
|
|
|
|
#endif
|