Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rubberduckycooly
GitHub Repository: rubberduckycooly/Sonic-Mania-Decompilation
Path: blob/master/SonicMania/Objects/Helpers/PlayerHelpers.h
338 views
1
#ifndef OBJ_PLAYERHELPERS_H
2
#define OBJ_PLAYERHELPERS_H
3
4
#include "Game.h"
5
6
// Object Class
7
struct ObjectPlayerHelpers {
8
RSDK_OBJECT
9
};
10
11
// Entity Class
12
struct EntityPlayerHelpers {
13
RSDK_ENTITY
14
};
15
16
// Object Entity
17
extern ObjectPlayerHelpers *PlayerHelpers;
18
19
// Standard Entity Events
20
void PlayerHelpers_Update(void);
21
void PlayerHelpers_LateUpdate(void);
22
void PlayerHelpers_StaticUpdate(void);
23
void PlayerHelpers_Draw(void);
24
void PlayerHelpers_Create(void *data);
25
void PlayerHelpers_StageLoad(void);
26
#if GAME_INCLUDE_EDITOR
27
void PlayerHelpers_EditorDraw(void);
28
void PlayerHelpers_EditorLoad(void);
29
#endif
30
void PlayerHelpers_Serialize(void);
31
32
// Extra Entity Functions
33
34
#endif //! OBJ_PLAYERHELPERS_H
35
36