Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rubberduckycooly
GitHub Repository: rubberduckycooly/Sonic-Mania-Decompilation
Path: blob/master/SonicMania/Objects/UFO/UFO_Dust.h
338 views
1
#ifndef OBJ_UFO_DUST_H
2
#define OBJ_UFO_DUST_H
3
4
#include "Game.h"
5
6
// Object Class
7
struct ObjectUFO_Dust {
8
RSDK_OBJECT
9
int32 unused1;
10
int32 unused2;
11
uint16 aniFrames;
12
};
13
14
// Entity Class
15
struct EntityUFO_Dust {
16
RSDK_ENTITY
17
int32 unused1;
18
int32 unused2;
19
int32 height;
20
int32 unused3;
21
int32 worldX;
22
int32 worldY;
23
Animator animator;
24
};
25
26
// Object Struct
27
extern ObjectUFO_Dust *UFO_Dust;
28
29
// Standard Entity Events
30
void UFO_Dust_Update(void);
31
void UFO_Dust_LateUpdate(void);
32
void UFO_Dust_StaticUpdate(void);
33
void UFO_Dust_Draw(void);
34
void UFO_Dust_Create(void *data);
35
void UFO_Dust_StageLoad(void);
36
#if GAME_INCLUDE_EDITOR
37
void UFO_Dust_EditorDraw(void);
38
void UFO_Dust_EditorLoad(void);
39
#endif
40
void UFO_Dust_Serialize(void);
41
42
// Extra Entity Functions
43
44
#endif //! OBJ_UFO_DUST_H
45
46