34 lines
417 B
C
34 lines
417 B
C
char * AssetPathLUT[7] =
|
|
{
|
|
"",
|
|
"backgrounds/unknown.png",
|
|
"backgrounds/test.jpg",
|
|
"backgrounds/ddlc.png",
|
|
"characters/test_normal.png",
|
|
"characters/test_happy.png",
|
|
"characters/monika_leaning.png",
|
|
};
|
|
|
|
bool AssetIsPermanentLUT[7] =
|
|
{
|
|
true,
|
|
true,
|
|
false,
|
|
false,
|
|
false,
|
|
false,
|
|
false,
|
|
};
|
|
|
|
char * AssetNameLUT[7] =
|
|
{
|
|
"None",
|
|
"Error",
|
|
"DemoBackground",
|
|
"DDLCBackground",
|
|
"ArthurNormal",
|
|
"ArthurHappy",
|
|
"MonikaLeaning",
|
|
};
|
|
|