mirror of
https://github.com/RocketRobz/SuperAllStarPhotoStudio.git
synced 2025-06-18 17:15:35 -04:00
26 lines
440 B
C
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",
|
|
}; |