aboutsummaryrefslogtreecommitdiff
path: root/src/game/Player.h
diff options
context:
space:
mode:
authorn0n4m3 <none@none>2010-04-11 11:18:20 +0400
committern0n4m3 <none@none>2010-04-11 11:18:20 +0400
commit17089d38f3624d592f36befe5f5cedfb08b3bbff (patch)
tree1ab4f70f2796c24bc80118163cc4003e30077e40 /src/game/Player.h
parentbe95faff2370db63eedd812ab4e70bb87e34b570 (diff)
Implement some opcodes. Big thx to TOM_RUS.
--HG-- branch : trunk
Diffstat (limited to 'src/game/Player.h')
-rw-r--r--src/game/Player.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/game/Player.h b/src/game/Player.h
index d9d0797cfe4..36e6807f3b4 100644
--- a/src/game/Player.h
+++ b/src/game/Player.h
@@ -79,6 +79,14 @@ enum PlayerUnderwaterState
UNDERWATER_EXIST_TIMERS = 0x10
};
+enum BuyBankSlotResult
+{
+ ERR_BANKSLOT_FAILED_TOO_MANY = 0,
+ ERR_BANKSLOT_INSUFFICIENT_FUNDS = 1,
+ ERR_BANKSLOT_NOTBANKER = 2,
+ ERR_BANKSLOT_OK = 3
+};
+
enum PlayerSpellState
{
PLAYERSPELL_UNCHANGED = 0,