Release 0.41

master
Kasi 2018-05-10 06:43:39 +01:00
parent 633a70351f
commit b96577cec6
3 changed files with 7 additions and 10 deletions

View File

@ -64,12 +64,12 @@ class Bank
static bool InteractItem(std::int32_t ID, const std::string& Option); static bool InteractItem(std::int32_t ID, const std::string& Option);
static bool InteractItem(const std::string& Name, const std::string& Option); static bool InteractItem(const std::string& Name, const std::string& Option);
static bool WithdrawXOf(std::int32_t ID, std::int32_t Amount); static bool WithdrawXOf(std::int32_t ID, std::int32_t Amount, bool OpenTab = false);
static bool WithdrawXOf(const std::string& Name, std::int32_t Amount); static bool WithdrawXOf(const std::string& Name, std::int32_t Amount, bool OpenTab = false);
static bool WithdrawAllOf(std::int32_t ID); static bool WithdrawAllOf(std::int32_t ID, bool OpenTab = false);
static bool WithdrawAllOf(const std::string& Name); static bool WithdrawAllOf(const std::string& Name, bool OpenTab = false);
static bool WithdrawAllButOneOf(std::int32_t ID); static bool WithdrawAllButOneOf(std::int32_t ID, bool OpenTab = false);
static bool WithdrawAllButOneOf(const std::string& Name); static bool WithdrawAllButOneOf(const std::string& Name, bool OpenTab = false);
static bool DepositAllOf(std::int32_t ID); static bool DepositAllOf(std::int32_t ID);
static bool DepositAllOf(const std::string& Name); static bool DepositAllOf(const std::string& Name);

View File

@ -20,9 +20,6 @@ class Inventory
static std::vector<std::string> GetItemNames(); static std::vector<std::string> GetItemNames();
static std::vector<std::int32_t> GetItemAmounts(); static std::vector<std::int32_t> GetItemAmounts();
static std::int32_t GetItemAmount(std::int32_t ID);
static std::int32_t GetItemAmount(const std::string& Name);
static bool IsEmpty(); static bool IsEmpty();
static bool IsFull(); static bool IsFull();

Binary file not shown.