diff options
| author | Roman971 <32455037+Roman971@users.noreply.github.com> | 2020-05-06 00:53:15 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-05 18:53:15 -0400 |
| commit | 1425678d8a995bfa68527ec5043b93529f0a85df (patch) | |
| tree | 99ddc44cff0fcaf41c8eb3d470186b27f89b98d8 /src/overlays/actors/ovl_En_Js | |
| parent | f114df8929e4bf4dbe74d106e8c101bb660bc442 (diff) | |
More actor cleanup Part 3 (#118)
* Add custom types for actor specific functions (like actions)
* Add a forward struct declaration for all other actors
Diffstat (limited to 'src/overlays/actors/ovl_En_Js')
| -rw-r--r-- | src/overlays/actors/ovl_En_Js/z_en_js.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/overlays/actors/ovl_En_Js/z_en_js.h b/src/overlays/actors/ovl_En_Js/z_en_js.h index c224fd711..8d9fd611d 100644 --- a/src/overlays/actors/ovl_En_Js/z_en_js.h +++ b/src/overlays/actors/ovl_En_Js/z_en_js.h @@ -4,7 +4,9 @@ #include <ultra64.h> #include <global.h> -typedef struct { +struct EnJs; + +typedef struct EnJs { /* 0x0000 */ Actor actor; /* 0x014C */ char unk_14C[0x144]; } EnJs; // size = 0x0290 |
