OpenFusion/src/TableData.hpp

20 lines
457 B
C++
Raw Normal View History

#pragma once
#include <map>
2020-10-03 02:05:20 +00:00
#include <stack>
#include "contrib/JSON.hpp"
2020-10-03 02:05:20 +00:00
#include "NPCManager.hpp"
namespace TableData {
2020-10-03 02:05:20 +00:00
extern std::map<int32_t, std::stack<WarpLocation>> RunningSkywayRoutes;
void init();
void cleanup();
2020-09-17 16:59:30 +00:00
int getItemType(int);
2020-09-25 18:42:31 +00:00
void loadPaths(int*);
2020-09-24 14:14:37 +00:00
void constructPathSkyway(nlohmann::json::iterator);
2020-09-25 18:42:31 +00:00
void constructPathSlider(nlohmann::json, int, int);
2020-09-24 14:14:37 +00:00
void constructPathNPC(nlohmann::json::iterator);
}