blob: 1057939155bc97768029950c9abfea71a0e644d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#include "object_spot17_obj.h"
#include "gfx.h"
u64 gCraterRockTLUT[] = {
#include "assets/objects/object_spot17_obj/gCraterRockTex.tlut.rgba16.inc.c"
};
#define gCraterRockTex_WIDTH 64
#define gCraterRockTex_HEIGHT 64
u64 gCraterRockTex[TEX_LEN(u64, gCraterRockTex_WIDTH, gCraterRockTex_HEIGHT, 4)] = {
#include "assets/objects/object_spot17_obj/gCraterRockTex.ci4.inc.c"
};
Vtx gCraterBombableWallVtx[] = {
#include "assets/objects/object_spot17_obj/gCraterBombableWallVtx.inc.c"
};
Vtx gCraterBombableWallCracksVtx[] = {
#include "assets/objects/object_spot17_obj/gCraterBombableWallCracksVtx.inc.c"
};
Gfx gCraterBombableWallDL[24] = {
#include "assets/objects/object_spot17_obj/gCraterBombableWallDL.inc.c"
};
Gfx gCraterBombableWallCracksDL[18] = {
#include "assets/objects/object_spot17_obj/gCraterBombableWallCracksDL.inc.c"
};
|