diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-05-31 09:16:14 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-05-31 09:16:14 +0200 |
commit | bf7c2fe783133cd9f15d96981053ef7ab6aaf49a (patch) | |
tree | 3c30a01cd8690a59af2db1ee440bf7e8d2bc61f4 /source/LuaWindow.h | |
parent | Added the OnClosing callback to cLuaWindow API (diff) | |
download | cuberite-bf7c2fe783133cd9f15d96981053ef7ab6aaf49a.tar cuberite-bf7c2fe783133cd9f15d96981053ef7ab6aaf49a.tar.gz cuberite-bf7c2fe783133cd9f15d96981053ef7ab6aaf49a.tar.bz2 cuberite-bf7c2fe783133cd9f15d96981053ef7ab6aaf49a.tar.lz cuberite-bf7c2fe783133cd9f15d96981053ef7ab6aaf49a.tar.xz cuberite-bf7c2fe783133cd9f15d96981053ef7ab6aaf49a.tar.zst cuberite-bf7c2fe783133cd9f15d96981053ef7ab6aaf49a.zip |
Diffstat (limited to '')
-rw-r--r-- | source/LuaWindow.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source/LuaWindow.h b/source/LuaWindow.h index 30c07bdbf..dc4497df7 100644 --- a/source/LuaWindow.h +++ b/source/LuaWindow.h @@ -10,6 +10,7 @@ #pragma once
#include "UI/Window.h"
+#include "ItemGrid.h"
@@ -35,7 +36,8 @@ cPlayer:OpenWindow check if the window is of this class, and if so, make a globa This reference needs to be unreferenced in the Destroy() function.
*/
class cLuaWindow :
- public cWindow
+ public cWindow,
+ public cItemGrid::cListener
{
typedef cWindow super;
@@ -83,6 +85,9 @@ protected: // cWindow overrides:
virtual bool ClosedByPlayer(cPlayer & a_Player) override;
virtual void Destroy(void) override;
+
+ // cItemGrid::cListener overrides:
+ virtual void OnSlotChanged(cItemGrid * a_ItemGrid, int a_SlotNum) override;
} ; // tolua_export
|