the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 17 lines 470 B view raw
1#pragma once 2 3#include "UIControl_ButtonList.h" 4 5class UIControl_PlayerList : public UIControl_ButtonList 6{ 7private: 8 IggyName m_funcSetPlayerIcon, m_funcSetVOIPIcon; 9 10public: 11 virtual bool setupControl(UIScene *scene, IggyValuePath *parent, const string &controlName); 12 13 using UIControl_ButtonList::addItem; 14 void addItem(const wstring &label, int iPlayerIcon, int iVOIPIcon); 15 void setPlayerIcon(int iId, int iPlayerIcon); 16 void setVOIPIcon(int iId, int iVOIPIcon); 17};