mirror of
https://github.com/RocketRobz/SuperAllStarPhotoStudio.git
synced 2025-06-18 17:15:35 -04:00
20 lines
267 B
C++
20 lines
267 B
C++
#ifndef SETTINGS_H
|
|
#define SETTINGS_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <string>
|
|
|
|
extern int iFps;
|
|
extern std::string currentMusicPack;
|
|
|
|
extern void loadSettings(void);
|
|
extern void saveSettings(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // SETTINGS_H
|