blob: a95eb82b518c5b762e24b50966c8884854d1459e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef OBJECT_OBJ_E_MIKANBOX_H
#define OBJECT_OBJ_E_MIKANBOX_H
#include "gbi.h"
/**
* @file obj_e_mikanbox
* みかん Box of tangerines
* The box that K.K. Slider sits on in front of the train station. Does not actually have any tangerines in it. There's
* also the copyright message that is displayed after the credits that scroll during K.K. Slider's performance.
*/
extern Vtx obj_e_mikanbox_v[];
extern Gfx obj_e_mikanbox_model[];
extern u8 obj_e_mikanbox_tex[];
extern Gfx obj_e_mikanbox_copyrightT_model[];
extern u8 copyright_tex[];
extern Gfx obj_e_mikanbox_copyrightT_model2[];
#endif
|