Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rubberduckycooly
GitHub Repository: rubberduckycooly/Sonic-Mania-Decompilation
Path: blob/master/SonicMania/Objects/UFO/UFO_Water.h
338 views
1
#ifndef OBJ_UFO_WATER_H
2
#define OBJ_UFO_WATER_H
3
4
#include "Game.h"
5
6
// Object Class
7
struct ObjectUFO_Water {
8
RSDK_OBJECT
9
int32 timer;
10
uint16 aniFrames;
11
};
12
13
// Entity Class
14
struct EntityUFO_Water {
15
RSDK_ENTITY
16
};
17
18
// Object Struct
19
extern ObjectUFO_Water *UFO_Water;
20
21
// Standard Entity Events
22
void UFO_Water_Update(void);
23
void UFO_Water_LateUpdate(void);
24
void UFO_Water_StaticUpdate(void);
25
void UFO_Water_Draw(void);
26
void UFO_Water_Create(void *data);
27
void UFO_Water_StageLoad(void);
28
#if GAME_INCLUDE_EDITOR
29
void UFO_Water_EditorDraw(void);
30
void UFO_Water_EditorLoad(void);
31
#endif
32
void UFO_Water_Serialize(void);
33
34
// Extra Entity Functions
35
36
#endif //! OBJ_UFO_WATER_H
37
38