summaryrefslogtreecommitdiffstats
path: root/source/Player.h
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-05-24 09:30:39 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-05-24 09:30:39 +0200
commitcf87169737fdeeee7d4b160688bbed7194e46147 (patch)
tree7daaeb9af8e3187cde6068c3cff5ff0ee64f0067 /source/Player.h
parentAdded ItemCategory::IsArmor() (diff)
downloadcuberite-cf87169737fdeeee7d4b160688bbed7194e46147.tar
cuberite-cf87169737fdeeee7d4b160688bbed7194e46147.tar.gz
cuberite-cf87169737fdeeee7d4b160688bbed7194e46147.tar.bz2
cuberite-cf87169737fdeeee7d4b160688bbed7194e46147.tar.lz
cuberite-cf87169737fdeeee7d4b160688bbed7194e46147.tar.xz
cuberite-cf87169737fdeeee7d4b160688bbed7194e46147.tar.zst
cuberite-cf87169737fdeeee7d4b160688bbed7194e46147.zip
Diffstat (limited to 'source/Player.h')
-rw-r--r--source/Player.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/Player.h b/source/Player.h
index c8425a128..378c5d782 100644
--- a/source/Player.h
+++ b/source/Player.h
@@ -81,10 +81,12 @@ public:
void LoginSetGameMode( eGameMode a_GameMode );
void SetIP(const AString & a_IP);
- // Tries to move to a new position, with collision checks and stuff
+ /// Tries to move to a new position, with collision checks and stuff
virtual void MoveTo( const Vector3d & a_NewPos ); // tolua_export
- cWindow* GetWindow() { return m_CurrentWindow; }
+ cWindow * GetWindow(void) { return m_CurrentWindow; }
+ const cWindow * GetWindow(void) const { return m_CurrentWindow; }
+
void OpenWindow( cWindow* a_Window );
void CloseWindow(char a_WindowType);