AlpacaLibrary/Include/Game/Interfaces/DepositBox.hpp

20 lines
342 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef DEPOSITBOX_HPP
#define DEPOSITBOX_HPP
/** @addtogroup Interfaces
* @{ */
class DepositBox
{
public:
static bool IsOpen();
2018-08-30 03:04:03 +00:00
static bool Close(bool AllowEsc = true);
2017-12-25 23:49:48 +00:00
static bool DepositAll();
static bool DepositEquipment();
static bool DepositLoot();
};
/** @} */
#endif // DEPOSITBOX_HPP