mirror of
https://github.com/RocketRobz/SuperAllStarPhotoStudio.git
synced 2025-06-18 17:15:35 -04:00
19 lines
312 B
C
19 lines
312 B
C
#ifndef FILE_BROWSE_H
|
|
#define FILE_BROWSE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern int numberOfExportedCharacters;
|
|
|
|
void getExportedCharacterContents (void);
|
|
const char* getExportedCharacterName (int num);
|
|
bool getExportedCharacterGender (int num);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // FILE_BROWSE_H
|