This commit is contained in:
theo
2020-05-24 21:34:18 -07:00
parent e0e05b1728
commit bf919c8006
33 changed files with 104328 additions and 104020 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
#ifndef ITEM_H
#define ITEM_H
enum ItemType
enum
{
Untyped,
SmithSword = 0x01,
@@ -122,5 +122,5 @@
FastSpin = 0x73,
FastSplit = 0x74,
LongSpin = 0x75
}
} ItemType;
#endif
+20
View File
@@ -0,0 +1,20 @@
#ifndef STATS_H
#define STATS_H
#include "global.h"
#include "item.h"
typedef struct {
u8 walletType;
u8 heartPieces;
u8 health;
u8 maxHealth;
u8 filler[8];
u8 itemOnA;
u8 itemonB;
u8 filler2[10];
u16 rupees;
u8 filler3[12];
} Stats;
#endif