mirror of
https://github.com/zeldaret/tmc
synced 2026-08-09 02:48:23 -04:00
Review Fixes
This commit is contained in:
+1
-1
@@ -12,7 +12,7 @@
|
||||
#include "entity.h"
|
||||
|
||||
extern u32 GetNextFunction(Entity*);
|
||||
extern void EnemyFunctionHandler(Entity*, void (*const func[])(Entity*));
|
||||
extern void EnemyFunctionHandler(Entity*, EntityActionArray);
|
||||
extern void sub_08001324(Entity*);
|
||||
|
||||
extern Entity* sub_0804A9FC(Entity*, u32);
|
||||
|
||||
@@ -149,6 +149,10 @@ typedef struct Entity_ {
|
||||
#endif
|
||||
} Entity;
|
||||
|
||||
typedef void(EntityAction)(Entity*);
|
||||
typedef void(*EntityActionPtr)(Entity*);
|
||||
typedef void(*const* EntityActionArray)(Entity*);
|
||||
|
||||
typedef struct LinkedList {
|
||||
Entity* last;
|
||||
Entity* first;
|
||||
|
||||
+1
-1
@@ -48,7 +48,7 @@ extern void ChangeObjPalette(Entity*, u32);
|
||||
extern void sub_0806FD3C(Entity*);
|
||||
extern void sub_0805ED14(u32*);
|
||||
extern void sub_080A7C18(u32, u32, u32);
|
||||
extern void sub_0804AA30(Entity*, void (*const funcs[])(Entity*));
|
||||
extern void sub_0804AA30(Entity*, EntityActionArray);
|
||||
extern void sub_0804A720(Entity*);
|
||||
extern u32 sub_080AEFE0(Entity*);
|
||||
extern u32 sub_08049FA0(Entity*);
|
||||
|
||||
Reference in New Issue
Block a user