mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2024-11-05 06:50:04 +00:00
dongresource
d4d0f388c4
* Monkey Skyway paths are now saved in a format compatible with paths.json * flush() is called on every periodic DB save in addition to the /flush and /mss N export commands * Monkeys now accept WIP routes
21 lines
485 B
C++
21 lines
485 B
C++
#pragma once
|
|
#include <map>
|
|
|
|
#include "contrib/JSON.hpp"
|
|
#include "NPCManager.hpp"
|
|
|
|
namespace TableData {
|
|
extern std::map<int32_t, std::vector<WarpLocation>> RunningSkywayRoutes;
|
|
|
|
void init();
|
|
void cleanup();
|
|
void loadGruntwork();
|
|
void flush();
|
|
|
|
int getItemType(int);
|
|
void loadPaths(int*);
|
|
void constructPathSkyway(nlohmann::json::iterator);
|
|
void constructPathSlider(nlohmann::json, int, int);
|
|
void constructPathNPC(nlohmann::json::iterator);
|
|
}
|