mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-06-13 20:22:53 -05:00
14 lines
278 B
C
14 lines
278 B
C
#ifndef POKEPLATINUM_STRUCT_BOX_CUSTOMIZATION_H
|
|
#define POKEPLATINUM_STRUCT_BOX_CUSTOMIZATION_H
|
|
|
|
#include "strbuf.h"
|
|
|
|
typedef struct {
|
|
u8 boxID;
|
|
u8 wallpaper;
|
|
u8 padding_02[2];
|
|
Strbuf *name;
|
|
} BoxCustomization;
|
|
|
|
#endif // POKEPLATINUM_STRUCT_BOX_CUSTOMIZATION_H
|