9 lines
198 B
C++
9 lines
198 B
C++
#include "settings.h"
|
|
|
|
Settings::Settings()
|
|
{
|
|
this->smartPathsEnabled = false;
|
|
this->betterCursors = true;
|
|
this->playerViewRectEnabled = false;
|
|
this->cursorTileRectEnabled = true;
|
|
}
|