Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Rubberduckycooly
GitHub Repository: Rubberduckycooly/RSDKv5-Decompilation
Path: blob/master/RSDKv5/RSDK/Core/Legacy/v4/RetroEnginev4.hpp
1167 views
1
2
namespace Legacy
3
{
4
namespace v4
5
{
6
enum RetroStates {
7
ENGINE_WAIT = 3,
8
ENGINE_INITPAUSE = 5,
9
ENGINE_EXITPAUSE = 6,
10
ENGINE_ENDGAME = 7,
11
ENGINE_RESETGAME = 8,
12
};
13
14
bool32 LoadGameConfig(const char *filepath);
15
void ProcessEngine();
16
17
#if RETRO_USE_MOD_LOADER
18
void LoadGameXML(bool pal = false);
19
void LoadXMLWindowText(const tinyxml2::XMLElement *gameElement);
20
void LoadXMLVariables(const tinyxml2::XMLElement *gameElement);
21
void LoadXMLPalettes(const tinyxml2::XMLElement* gameElement);
22
void LoadXMLObjects(const tinyxml2::XMLElement* gameElement);
23
void LoadXMLSoundFX(const tinyxml2::XMLElement* gameElement);
24
void LoadXMLPlayers(const tinyxml2::XMLElement* gameElement);
25
void LoadXMLStages(const tinyxml2::XMLElement* gameElement);
26
#endif
27
28
} // namespace v4
29
} // namespace Legacy
30