mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2024-11-05 06:50:04 +00:00
20 lines
457 B
C++
20 lines
457 B
C++
#pragma once
|
|
#include <map>
|
|
#include <stack>
|
|
|
|
#include "contrib/JSON.hpp"
|
|
#include "NPCManager.hpp"
|
|
|
|
namespace TableData {
|
|
extern std::map<int32_t, std::stack<WarpLocation>> RunningSkywayRoutes;
|
|
|
|
void init();
|
|
void cleanup();
|
|
|
|
int getItemType(int);
|
|
void loadPaths(int*);
|
|
void constructPathSkyway(nlohmann::json::iterator);
|
|
void constructPathSlider(nlohmann::json, int, int);
|
|
void constructPathNPC(nlohmann::json::iterator);
|
|
}
|