2018-09-27 00:30:05 +01:00
|
|
|
#ifndef SETTINGS_H
|
|
|
|
#define SETTINGS_H
|
|
|
|
|
|
|
|
#include <QCursor>
|
|
|
|
|
|
|
|
class Settings
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Settings();
|
|
|
|
bool smartPathsEnabled;
|
|
|
|
bool betterCursors;
|
|
|
|
QCursor mapCursor;
|
2019-01-09 00:04:48 +00:00
|
|
|
bool playerViewRectEnabled;
|
2019-01-09 15:35:34 +00:00
|
|
|
bool cursorTileRectEnabled;
|
2018-09-27 00:30:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SETTINGS_H
|