mirror of https://github.com/zeldaret/tmc.git
24 lines
317 B
C
24 lines
317 B
C
#ifndef STATS_H
|
|
#define STATS_H
|
|
|
|
#include "global.h"
|
|
#include "item.h"
|
|
|
|
typedef struct {
|
|
u8 walletType;
|
|
u8 heartPieces;
|
|
u8 health;
|
|
u8 maxHealth;
|
|
u8 bombCount;
|
|
u8 arrowCount;
|
|
u8 bombBagType;
|
|
u8 quiverType;
|
|
u8 filler[4];
|
|
u8 itemOnA;
|
|
u8 itemonB;
|
|
u8 filler2[10];
|
|
u16 rupees;
|
|
u8 filler3[12];
|
|
} Stats;
|
|
|
|
#endif |