17 lines
264 B
C++
17 lines
264 B
C++
#ifndef SETTINGS_H
|
|
#define SETTINGS_H
|
|
|
|
#include <QCursor>
|
|
|
|
class Settings
|
|
{
|
|
public:
|
|
Settings();
|
|
bool smartPathsEnabled;
|
|
bool betterCursors;
|
|
QCursor mapCursor;
|
|
bool playerViewRectEnabled;
|
|
bool cursorTileRectEnabled;
|
|
};
|
|
|
|
#endif // SETTINGS_H
|