fallout2-ce/src/preferences.h

18 lines
343 B
C
Raw Normal View History

2023-02-17 01:33:26 -08:00
#ifndef FALLOUT_PREFERENCES_H_
#define FALLOUT_PREFERENCES_H_
#include "db.h"
namespace fallout {
int preferencesInit();
int doPreferences(bool animated);
int preferencesSave(File* stream);
int preferencesLoad(File* stream);
void brightnessIncrease();
void brightnessDecrease();
} // namespace fallout
#endif /* FALLOUT_PREFERENCES_H_ */