the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 15 lines 266 B view raw
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};