Now road, terrain and buildings work fine

This commit is contained in:
2024-05-26 01:21:19 +03:00
parent d0db1e45a3
commit ab5f35eba1
20 changed files with 2625 additions and 649 deletions

View File

@@ -0,0 +1,10 @@
#ifndef ROAD_LINES_PROCESSING_H_
#define ROAD_LINES_PROCESSSING_H_
class Node;
class RoadProcessing {
public:
static void road_setup(Node *target);
static void load_data();
static void cleanup();
};
#endif