porymap/include/settings.h
2024-10-01 01:50:29 -04:00

18 lines
277 B
C++

#pragma once
#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