diff options
Diffstat (limited to '')
-rw-r--r-- | source/cCreativeInventory.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/source/cCreativeInventory.h b/source/cCreativeInventory.h new file mode 100644 index 000000000..996136a27 --- /dev/null +++ b/source/cCreativeInventory.h @@ -0,0 +1,13 @@ +#pragma once
+
+#include "cInventory.h"
+
+class cCreativeInventory //tolua_export
+ : public cInventory
+{ //tolua_export
+public:
+ cCreativeInventory(cPlayer* a_Owner);
+ ~cCreativeInventory();
+
+ virtual void Clicked( cPacket* a_ClickPacket );
+}; //tolua_export
|