Release 0.90

master
Kasi 2018-08-30 04:04:03 +01:00
parent c8dc78ba34
commit 938014e2e8
5 changed files with 5 additions and 3 deletions

View File

@ -12,6 +12,7 @@ extern void Setup();
extern bool OnStart(); extern bool OnStart();
extern bool Loop(); extern bool Loop();
extern void OnEnd(); extern void OnEnd();
extern bool OnBreak();
typedef struct typedef struct
{ {

View File

@ -39,7 +39,7 @@ class Bank
} PIN_STEP; } PIN_STEP;
static bool IsOpen(); static bool IsOpen();
static bool Close(); static bool Close(bool AllowEsc = true);
static std::vector<std::int32_t> GetItemIDs(); static std::vector<std::int32_t> GetItemIDs();
static std::vector<std::string> GetItemNames(); static std::vector<std::string> GetItemNames();

View File

@ -7,7 +7,7 @@ class DepositBox
{ {
public: public:
static bool IsOpen(); static bool IsOpen();
static bool Close(); static bool Close(bool AllowEsc = true);
static bool DepositAll(); static bool DepositAll();
static bool DepositEquipment(); static bool DepositEquipment();

View File

@ -10,9 +10,10 @@ class BreakHandler
static Counter GetBreakCounter(); static Counter GetBreakCounter();
static Timer GetBreakTimer(); static Timer GetBreakTimer();
static bool MiniBreak(bool Logout = true);
static bool ShortBreak(bool Logout = true); static bool ShortBreak(bool Logout = true);
static bool LongBreak(bool Logout = true); static bool LongBreak(bool Logout = true);
static bool Break(bool Logout = true); static bool Break(bool LogoutOnLong = true, bool LogoutOnShort = true, bool LogoutOnMini = false);
}; };
#endif // BREAKHANDLER_HPP_INCLUDED #endif // BREAKHANDLER_HPP_INCLUDED

Binary file not shown.