20 lines
240 B
C
Raw Normal View History

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-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