mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-20 22:17:40 -05:00
26 lines
452 B
C
26 lines
452 B
C
#ifndef POKEPLATINUM_STRUCT_SEAL_CASE_H
|
|
#define POKEPLATINUM_STRUCT_SEAL_CASE_H
|
|
|
|
#include "constants/ball_capsule.h"
|
|
|
|
typedef struct {
|
|
u8 type;
|
|
u8 x;
|
|
u8 y;
|
|
} BallSeal;
|
|
|
|
typedef struct {
|
|
BallSeal seals[SEALS_PER_CAPSULE];
|
|
} BallCapsule;
|
|
|
|
typedef struct {
|
|
u8 count[SEAL_ID_MAX - 1];
|
|
} SealCounts;
|
|
|
|
typedef struct {
|
|
BallCapsule capsules[TOTAL_CAPSULES];
|
|
SealCounts seals;
|
|
} SealCase;
|
|
|
|
#endif // POKEPLATINUM_STRUCT_SEAL_CASE_H
|