mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-20 14:01:15 +00:00
Replace some more constants with proper asset symbols (#1053)
This commit is contained in:
parent
1ac6e42b56
commit
8ff1f242fa
15 changed files with 115 additions and 71 deletions
|
@ -5,10 +5,12 @@
|
|||
*/
|
||||
|
||||
#include "z_en_nutsball.h"
|
||||
#include "objects/object_dns/object_dns.h"
|
||||
#include "objects/object_hintnuts/object_hintnuts.h"
|
||||
#include "objects/object_dnk/object_dnk.h"
|
||||
#include "overlays/effects/ovl_Effect_Ss_Hahen/z_eff_ss_hahen.h"
|
||||
#include "objects/object_dekunuts/object_dekunuts.h"
|
||||
#include "objects/object_hintnuts/object_hintnuts.h"
|
||||
#include "objects/object_shopnuts/object_shopnuts.h"
|
||||
#include "objects/object_dns/object_dns.h"
|
||||
#include "objects/object_dnk/object_dnk.h"
|
||||
|
||||
#define FLAGS 0x00000010
|
||||
|
||||
|
@ -54,9 +56,13 @@ static ColliderCylinderInit sCylinderInit = {
|
|||
{ 13, 13, 0, { 0 } },
|
||||
};
|
||||
|
||||
static s16 sObjectIDs[] = { OBJECT_DEKUNUTS, OBJECT_HINTNUTS, OBJECT_SHOPNUTS, OBJECT_DNS, OBJECT_DNK };
|
||||
static s16 sObjectIDs[] = {
|
||||
OBJECT_DEKUNUTS, OBJECT_HINTNUTS, OBJECT_SHOPNUTS, OBJECT_DNS, OBJECT_DNK,
|
||||
};
|
||||
|
||||
static Gfx* sDLists[] = { 0x06002028, gHintNutsNutDL, 0x06004008, gDntJijiNutDL, gDntStageNutDL };
|
||||
static Gfx* sDLists[] = {
|
||||
gDekuNutsDekuNutDL, gHintNutsNutDL, gBusinessScrubDekuNutDL, gDntJijiNutDL, gDntStageNutDL,
|
||||
};
|
||||
|
||||
void EnNutsball_Init(Actor* thisx, GlobalContext* globalCtx) {
|
||||
EnNutsball* this = THIS;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue