aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/Common/XUI/XUI_Ctrl_MinecraftPlayer.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.Client/Common/XUI/XUI_Ctrl_MinecraftPlayer.h')
-rw-r--r--Minecraft.Client/Common/XUI/XUI_Ctrl_MinecraftPlayer.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/Minecraft.Client/Common/XUI/XUI_Ctrl_MinecraftPlayer.h b/Minecraft.Client/Common/XUI/XUI_Ctrl_MinecraftPlayer.h
new file mode 100644
index 00000000..fa28d6b8
--- /dev/null
+++ b/Minecraft.Client/Common/XUI/XUI_Ctrl_MinecraftPlayer.h
@@ -0,0 +1,42 @@
+#pragma once
+
+#include <string>
+#include <XuiApp.h>
+
+using namespace std;
+
+class TileRenderer;
+class ItemRenderer;
+class CXuiSceneInventory;
+
+//-----------------------------------------------------------------------------
+// CXuiCtrlMinecraftPlayer class
+//-----------------------------------------------------------------------------
+class CXuiCtrlMinecraftPlayer : public CXuiControlImpl
+{
+public:
+ XUI_IMPLEMENT_CLASS(CXuiCtrlMinecraftPlayer, L"CXuiCtrlMinecraftPlayer", XUI_CLASS_LABEL)
+
+ CXuiCtrlMinecraftPlayer();
+ virtual ~CXuiCtrlMinecraftPlayer() { };
+
+protected:
+
+ XUI_BEGIN_MSG_MAP()
+ XUI_ON_XM_INIT(OnInit)
+ XUI_ON_XM_RENDER(OnRender)
+ XUI_END_MSG_MAP()
+
+ HRESULT OnInit(XUIMessageInit* pInitData, BOOL& rfHandled);
+ HRESULT OnRender(XUIMessageRender *pRenderData, BOOL &rfHandled);
+
+private:
+ BOOL m_bDirty;
+ float m_fScale,m_fAlpha;
+ int m_iPad;
+ CXuiSceneInventory *m_containerScene;
+
+ float m_fScreenWidth,m_fScreenHeight;
+ float m_fRawWidth,m_fRawHeight;
+
+}; \ No newline at end of file