2017-11-21 16:10:58 +00:00
|
|
|
#ifndef CONFIGURATION_H
|
|
|
|
#define CONFIGURATION_H
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#include "preferences.h"
|
|
|
|
|
|
|
|
class QGamepad;
|
|
|
|
|
|
|
|
QString getScreenshotTemplate();
|
2019-04-20 20:51:19 +01:00
|
|
|
int getSlot0Card();
|
|
|
|
|
2017-11-21 16:10:58 +00:00
|
|
|
Preferences::Data getCurrentOptions(const std::shared_ptr<QGamepad> & gamepad);
|
|
|
|
void setNewOptions(const Preferences::Data & currentOptions, const Preferences::Data & newOptions,
|
|
|
|
std::shared_ptr<QGamepad> & gamepad);
|
|
|
|
|
|
|
|
#endif // CONFIGURATION_H
|