AlpacaLibrary/Include/Game/Interfaces/DepositBox.hpp

19 lines
279 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef DEPOSITBOX_HPP
#define DEPOSITBOX_HPP
/** @addtogroup Interfaces
* @{ */
2018-12-27 18:17:09 +00:00
namespace DepositBox
2017-12-25 23:49:48 +00:00
{
2018-12-27 18:17:09 +00:00
bool IsOpen();
bool Close(bool AllowEsc = true);
2017-12-25 23:49:48 +00:00
2018-12-27 18:17:09 +00:00
bool DepositAll();
bool DepositEquipment();
bool DepositLoot();
2017-12-25 23:49:48 +00:00
};
/** @} */
#endif // DEPOSITBOX_HPP