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