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-22 17:03:43 +02:00
|
|
|
extern NodeManager nodeManager;
|
2022-10-23 23:44:58 +02:00
|
|
|
extern NodeManager nodeManager1;
|
|
|
|
|
2022-10-22 17:03:43 +02:00
|
|
|
|
2022-10-23 23:44:58 +02:00
|
|
|
struct Position2D
|
|
|
|
{
|
|
|
|
int x;
|
|
|
|
int z;
|
|
|
|
};
|
|
|
|
#endif
|