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

22 lines
394 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef OPTIONS_HPP_INCLUDED
#define OPTIONS_HPP_INCLUDED
/** @addtogroup GameTabs
* @{ */
class Options
{
public:
static bool IsOpen();
static bool Open();
static bool GetAcceptAid();
static bool ToggleAcceptAid(bool Toggle);
static bool GetRunMode();
static bool ToggleRunMode(bool Toggle);
};
/** @} */
#endif // OPTIONS_HPP_INCLUDED