pokeplatinum/include/struct_defs/seal_case.h
2025-06-22 11:57:16 -07:00

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