diff options
author | Mattes D <github@xoft.cz> | 2016-03-21 09:58:15 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2016-03-21 09:58:15 +0100 |
commit | e3d34d9917bb2c341de3c7206e3021e916d3f706 (patch) | |
tree | 766f4703a8c30a01bfc5148fe54c6d6b4a3e3cc7 /src/Entities/Player.h | |
parent | Merge pull request #3084 from cuberite/seadragon91-patch-1 (diff) | |
download | cuberite-e3d34d9917bb2c341de3c7206e3021e916d3f706.tar cuberite-e3d34d9917bb2c341de3c7206e3021e916d3f706.tar.gz cuberite-e3d34d9917bb2c341de3c7206e3021e916d3f706.tar.bz2 cuberite-e3d34d9917bb2c341de3c7206e3021e916d3f706.tar.lz cuberite-e3d34d9917bb2c341de3c7206e3021e916d3f706.tar.xz cuberite-e3d34d9917bb2c341de3c7206e3021e916d3f706.tar.zst cuberite-e3d34d9917bb2c341de3c7206e3021e916d3f706.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Entities/Player.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Entities/Player.h b/src/Entities/Player.h index bca9c5547..6d092eeb3 100644 --- a/src/Entities/Player.h +++ b/src/Entities/Player.h @@ -225,10 +225,10 @@ public: cWindow * GetWindow(void) { return m_CurrentWindow; } // tolua_export const cWindow * GetWindow(void) const { return m_CurrentWindow; } - // tolua_begin - /** Opens the specified window; closes the current one first using CloseWindow() */ - void OpenWindow(cWindow * a_Window); + void OpenWindow(cWindow * a_Window); // Exported in ManualBindings.cpp + + // tolua_begin /** Closes the current window, resets current window to m_InventoryWindow. A plugin may refuse the closing if a_CanRefuse is true */ void CloseWindow(bool a_CanRefuse = true); |