summaryrefslogtreecommitdiffstats
path: root/source/cCreativeInventory.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/cCreativeInventory.h')
-rw-r--r--source/cCreativeInventory.h19
1 files changed, 14 insertions, 5 deletions
diff --git a/source/cCreativeInventory.h b/source/cCreativeInventory.h
index f38c02c6c..469f0ecd6 100644
--- a/source/cCreativeInventory.h
+++ b/source/cCreativeInventory.h
@@ -1,13 +1,22 @@
+
#pragma once
#include "cInventory.h"
-class cCreativeInventory //tolua_export
+
+
+
+
+class cCreativeInventory
: public cInventory
-{ //tolua_export
+{
public:
- cCreativeInventory(cPlayer* a_Owner);
+ cCreativeInventory(cPlayer * a_Owner);
~cCreativeInventory();
- virtual void Clicked( cPacket* a_ClickPacket );
-}; //tolua_export
+ virtual void Clicked(short a_SlotNum, bool a_IsRightClick, bool a_IsShiftPressed, const cItem & a_HeldItem) override;
+} ;
+
+
+
+