Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rubberduckycooly
GitHub Repository: rubberduckycooly/Sonic-1-2-2013-Decompilation
Path: blob/main/RSDKv4/NativeObjects/AchievementsMenu.hpp
817 views
1
#ifndef NATIVE_ACHIEVEMENTSMENU_H
2
#define NATIVE_ACHIEVEMENTSMENU_H
3
4
#if !RETRO_USE_ORIGINAL_CODE
5
struct NativeEntity_AchievementsMenu : NativeEntityBase {
6
NativeEntity_TextLabel *label;
7
NativeEntity_AchievementDisplay *displays[5];
8
MeshInfo *meshPanel;
9
MatrixF renderMatrix;
10
MatrixF matrixTemp;
11
float scale;
12
byte textureArrows;
13
byte backPressed;
14
int arrowAlpha;
15
int state;
16
float timer;
17
};
18
19
void AchievementsMenu_Create(void *objPtr);
20
void AchievementsMenu_Main(void *objPtr);
21
#endif
22
23
#endif // !NATIVE_ACHIEVEMENTSMENU_H
24
25