mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-05-16 08:20:26 -05:00
14 lines
281 B
C
14 lines
281 B
C
#ifndef POKEPLATINUM_STRUCT_BOX_CUSTOMIZATION_H
|
|
#define POKEPLATINUM_STRUCT_BOX_CUSTOMIZATION_H
|
|
|
|
#include "string_gf.h"
|
|
|
|
typedef struct {
|
|
u8 boxID;
|
|
u8 wallpaper;
|
|
u8 padding_02[2];
|
|
String *name;
|
|
} BoxCustomization;
|
|
|
|
#endif // POKEPLATINUM_STRUCT_BOX_CUSTOMIZATION_H
|