OpenFusion/src/TableData.hpp
2020-09-24 10:32:46 -04:00

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);
}