mirror of
https://github.com/zeldaret/tmc
synced 2026-07-09 14:55:35 -04:00
poggers
This commit is contained in:
+2
-2
@@ -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
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user