summaryrefslogtreecommitdiff
path: root/include/team_inventory.h
blob: 36f5a87d709a9b5675e30a9693c7d8a3a2a30524 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef GUARD_TEAM_INVENTORY_H
#define GUARD_TEAM_INVENTORY_H

struct TeamInventory
{
    struct ItemSlot teamItems[INVENTORY_SIZE];
    u16 teamStorage[NUMBER_OF_ITEM_IDS];
    // same type (initialized by same function):
    struct HeldItem unk230[8];
    struct HeldItem unk250[4];
    /* 0x260 */ s32 teamMoney;
    /* 0x264 */ u32 teamSavings;
};

#endif