Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Rubberduckycooly
GitHub Repository: Rubberduckycooly/RSDKv5-Decompilation
Path: blob/master/RSDKv5/RSDK/Scene/Legacy/v4/SceneLegacyv4.hpp
1186 views
1
2
namespace Legacy
3
{
4
5
namespace v4
6
{
7
8
enum StageModes {
9
STAGEMODE_FROZEN = 3,
10
STAGEMODE_2P,
11
};
12
13
void InitFirstStage();
14
void ProcessStage();
15
void HandleCameras();
16
17
void ProcessParallaxAutoScroll();
18
19
void LoadStageFiles();
20
21
void LoadActLayout();
22
void LoadStageBackground();
23
24
void SetPlayerScreenPosition(Entity *target);
25
void SetPlayerScreenPositionCDStyle(Entity *target);
26
void SetPlayerHLockedScreenPosition(Entity *target);
27
void SetPlayerLockedScreenPosition(Entity *target);
28
void SetPlayerScreenPositionFixed(Entity *target);
29
void SetPlayerScreenPositionStatic(Entity *target);
30
} // namespace v4
31
32
} // namespace Legacy
33