mirror of
https://github.com/zeldaret/tmc
synced 2026-07-10 07:06:52 -04:00
Put const data into wheaton
This commit is contained in:
+2
-3
@@ -1,14 +1,13 @@
|
||||
#include "npc.h"
|
||||
|
||||
extern Hitbox gUnk_0810C3C0;
|
||||
|
||||
void Wheaton(Entity* this) {
|
||||
static const Hitbox gUnk_0810C3C0 = { 0, 4, { 0, 0, 0, 0 }, 6, 12 };
|
||||
if (this->action == 0) {
|
||||
this->action++;
|
||||
|
||||
SetDefaultPriority(this, PRIO_MESSAGE);
|
||||
SortEntityAbove(this, this);
|
||||
this->hitbox = &gUnk_0810C3C0;
|
||||
this->hitbox = (Hitbox*)&gUnk_0810C3C0;
|
||||
this->spriteOffsetY = 0xfe;
|
||||
sub_0807DD64(this);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user