mirror of
https://github.com/Zelda64Recomp/Zelda64Recomp
synced 2026-05-23 06:54:33 -04:00
Implemented warp debug menu feature
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user