mirror of
https://github.com/huderlem/porymap.git
synced 2026-03-22 01:54:46 -05:00
17 lines
232 B
C++
17 lines
232 B
C++
#ifndef SETTINGS_H
|
|
#define SETTINGS_H
|
|
|
|
#include <QCursor>
|
|
|
|
class Settings
|
|
{
|
|
public:
|
|
Settings();
|
|
bool smartPathsEnabled;
|
|
bool betterCursors;
|
|
QCursor mapCursor;
|
|
bool playerViewRectEnabled;
|
|
};
|
|
|
|
#endif // SETTINGS_H
|