SuperAllStarPhotoStudio/source/smCharNames.c
2020-07-13 00:07:48 -06:00

26 lines
440 B
C

#include <stdbool.h>
const char* smCharacterNames[] = {
"Mario",
"", // TODO: Luigi
"", // TODO: Peach
};
bool smCharacterGenders[] = {
true, // Male
true, // Male
false, // Female
};
const char* smCharacterFileNamesSpring[] = {
"sm_Mario",
};
const char* smCharacterFileNamesSummer[] = {
"sm_Mario",
};
const char* smCharacterFileNamesFall[] = {
"sm_Mario",
};
const char* smCharacterFileNamesWinter[] = {
"sm_Mario",
};