mirror of
https://github.com/RocketRobz/SuperAllStarPhotoStudio.git
synced 2025-06-18 17:15:35 -04:00
26 lines
417 B
C
26 lines
417 B
C
#include <stdbool.h>
|
|
|
|
const char* nesCharacterNames[] = {
|
|
"R.O.B.",
|
|
};
|
|
|
|
const char* famiCharacterNames[] = {
|
|
"Robot",
|
|
};
|
|
|
|
bool nesCharacterGenders[] = {
|
|
true, // Male
|
|
};
|
|
|
|
const char* nesCharacterFileNamesSpring[] = {
|
|
"nes_ROB",
|
|
};
|
|
const char* nesCharacterFileNamesSummer[] = {
|
|
"nes_ROB",
|
|
};
|
|
const char* nesCharacterFileNamesFall[] = {
|
|
"nes_ROB",
|
|
};
|
|
const char* nesCharacterFileNamesWinter[] = {
|
|
"nes_ROB",
|
|
}; |