AlpacaLibrary/Include/Game/Tools/Settings.hpp

27 lines
637 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef SETTINGS_HPP_INCLUDED
#define SETTINGS_HPP_INCLUDED
#include <cstdint>
#include <vector>
/** @addtogroup Tools
* @{ */
class Settings
{
public:
static std::vector<std::int32_t> GetAll();
static std::int32_t GetSetting(std::int32_t SettingIndex);
static std::int32_t GetSetting(std::int32_t SettingIndex, std::int32_t BitMask);
static bool GetSettingBit(std::int32_t SettingIndex, std::int32_t BitIndex);
2018-05-10 01:08:38 +00:00
2017-12-25 23:49:48 +00:00
static std::int32_t GetScreenType();
2018-05-10 01:08:38 +00:00
static bool IsEscToCloseInterfacesOn();
static bool IsShiftClickToDropOn();
2017-12-25 23:49:48 +00:00
};
/** @} */
#endif // SETTINGS_HPP_INCLUDED