AlpacaLibrary/Include/Game/Interfaces/DepositBox.hpp

20 lines
322 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();
static bool Close();
static bool DepositAll();
static bool DepositEquipment();
static bool DepositLoot();
};
/** @} */
#endif // DEPOSITBOX_HPP