AlpacaLibrary/Include/Game/Interfaces/DepositBox.hpp

15 lines
232 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef DEPOSITBOX_HPP
#define DEPOSITBOX_HPP
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();
2018-12-31 21:52:58 +00:00
}
2017-12-25 23:49:48 +00:00
#endif // DEPOSITBOX_HPP