mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-11-07 15:15:05 +01:00
25 lines
439 B
C++
25 lines
439 B
C++
#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
|