mirror of
https://github.com/zeldaret/tmc
synced 2026-06-28 11:10:49 -04:00
Use new entity structs in a few more files
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
#ifndef HOUSESIGN_H
|
||||
#define HOUSESIGN_H
|
||||
|
||||
#include "entity.h"
|
||||
|
||||
typedef struct {
|
||||
/*0x00*/ Entity base;
|
||||
/*0x68*/ u8 unused1[24];
|
||||
/*0x80*/ s16 unk_80;
|
||||
/*0x82*/ s16 unk_82;
|
||||
} HouseSignEntity;
|
||||
|
||||
#endif // HOUSESIGN_H
|
||||
@@ -0,0 +1,13 @@
|
||||
#ifndef ITEMFORSALE_H
|
||||
#define ITEMFORSALE_H
|
||||
|
||||
#include "object.h"
|
||||
|
||||
typedef struct {
|
||||
/*0x00*/ Entity base;
|
||||
/*0x68*/ u8 unk_68[0x18];
|
||||
/*0x80*/ u16 unk_80;
|
||||
/*0x82*/ u16 unk_82;
|
||||
} ItemForSaleEntity;
|
||||
|
||||
#endif // ITEMFORSALE_H
|
||||
Reference in New Issue
Block a user