mirror of
https://github.com/huderlem/porymap.git
synced 2026-03-21 17:45:44 -05:00
18 lines
254 B
C++
18 lines
254 B
C++
#pragma once
|
|
#ifndef SETTINGS_H
|
|
#define SETTINGS_H
|
|
|
|
#include <QCursor>
|
|
|
|
class Settings
|
|
{
|
|
public:
|
|
Settings();
|
|
bool smartPathsEnabled;
|
|
bool betterCursors;
|
|
bool playerViewRectEnabled;
|
|
bool cursorTileRectEnabled;
|
|
};
|
|
|
|
#endif // SETTINGS_H
|