1#pragma once
2
3#include "UIControl.h"
4
5class UIControl_MinecraftPlayer : public UIControl
6{
7private:
8 float m_fScreenWidth,m_fScreenHeight;
9 float m_fRawWidth,m_fRawHeight;
10
11public:
12 UIControl_MinecraftPlayer();
13
14 void render(IggyCustomDrawCallbackRegion *region);
15};