mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2024-11-05 06:50:04 +00:00
15 lines
277 B
C++
15 lines
277 B
C++
#pragma once
|
|
#include <map>
|
|
|
|
#include "contrib/JSON.hpp"
|
|
|
|
namespace TableData {
|
|
void init();
|
|
void cleanup();
|
|
|
|
int getItemType(int);
|
|
void loadPaths();
|
|
void constructPathSkyway(nlohmann::json::iterator);
|
|
void constructPathNPC(nlohmann::json::iterator);
|
|
}
|