Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rubberduckycooly
GitHub Repository: rubberduckycooly/Sonic-Mania-Decompilation
Path: blob/master/SonicMania/Objects/Puyo/PuyoLabel.h
338 views
1
#ifndef OBJ_PUYOLABEL_H
2
#define OBJ_PUYOLABEL_H
3
4
#include "Game.h"
5
6
// Object Class
7
struct ObjectPuyoLabel {
8
RSDK_OBJECT
9
uint16 aniFrames;
10
};
11
12
// Entity Class
13
struct EntityPuyoLabel {
14
RSDK_ENTITY
15
StateMachine(state);
16
int32 listID;
17
int32 frame;
18
int32 unused1;
19
int32 unused2;
20
int32 unused3;
21
Animator animator;
22
};
23
24
// Object Struct
25
extern ObjectPuyoLabel *PuyoLabel;
26
27
// Standard Entity Events
28
void PuyoLabel_Update(void);
29
void PuyoLabel_LateUpdate(void);
30
void PuyoLabel_StaticUpdate(void);
31
void PuyoLabel_Draw(void);
32
void PuyoLabel_Create(void *data);
33
void PuyoLabel_StageLoad(void);
34
#if GAME_INCLUDE_EDITOR
35
void PuyoLabel_EditorDraw(void);
36
void PuyoLabel_EditorLoad(void);
37
#endif
38
void PuyoLabel_Serialize(void);
39
40
// Extra Entity Functions
41
42
#endif //! OBJ_PUYOLABEL_H
43
44