Implemented warp debug menu feature

This commit is contained in:
Mr-Wiseguy
2024-03-01 18:42:05 -05:00
parent 8dcca10fed
commit beec29217c
13 changed files with 1094 additions and 25 deletions
+24
View File
@@ -0,0 +1,24 @@
#ifndef __RECOMP_DEBUG_H__
#define __RECOMP_DEBUG_H__
#include <vector>
#include <string>
namespace recomp {
struct SceneWarps {
int index;
std::string name;
std::vector<std::string> entrances;
};
struct AreaWarps {
std::string name;
std::vector<SceneWarps> scenes;
};
extern std::vector<AreaWarps> game_warps;
void do_warp(int area, int scene, int entrance);
}
#endif