AlpacaLibrary/Include/Game/Interfaces/GameTabs/Options.hpp

20 lines
350 B
C++
Raw Permalink Normal View History

2017-12-25 23:49:48 +00:00
#ifndef OPTIONS_HPP_INCLUDED
#define OPTIONS_HPP_INCLUDED
2019-05-28 16:34:51 +00:00
#include <cstdint>
2018-12-27 18:17:09 +00:00
namespace Options
2017-12-25 23:49:48 +00:00
{
2018-12-27 18:17:09 +00:00
bool IsOpen();
2019-05-31 20:06:57 +00:00
bool Open(bool UseHotkey = false);
2019-05-28 16:34:51 +00:00
std::int32_t GetTabHotkey();
2017-12-25 23:49:48 +00:00
2018-12-27 18:17:09 +00:00
bool GetAcceptAid();
bool ToggleAcceptAid(bool Toggle);
2017-12-25 23:49:48 +00:00
2018-12-27 18:17:09 +00:00
bool GetRunMode();
bool ToggleRunMode(bool Toggle);
2018-12-31 21:52:58 +00:00
}
2017-12-25 23:49:48 +00:00
#endif // OPTIONS_HPP_INCLUDED