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

18 lines
286 B
C++
Raw Normal View History

2018-09-27 23:35:31 +00:00
#ifndef ACCOUNTMANAGEMENT_HPP_INCLUDED
#define ACCOUNTMANAGEMENT_HPP_INCLUDED
2019-05-28 16:34:51 +00:00
#include <cstdint>
2018-09-27 23:35:31 +00:00
/** @addtogroup GameTabs
* @{ */
2018-12-31 21:52:58 +00:00
namespace AccountManagement
2018-09-27 23:35:31 +00:00
{
2018-12-31 21:52:58 +00:00
bool IsOpen();
bool Open();
2019-05-28 16:34:51 +00:00
std::int32_t GetTabHotkey();
2018-12-31 21:52:58 +00:00
}
2018-09-27 23:35:31 +00:00
/** @} */
#endif // ACCOUNTMANAGEMENT_HPP_INCLUDED