mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-09 06:07:20 +00:00
17 lines
528 B
C++
17 lines
528 B
C++
#pragma once
|
|
|
|
#include "UIControl_ButtonList.h"
|
|
|
|
class UIControl_PlayerList : public UIControl_ButtonList {
|
|
private:
|
|
IggyName m_funcSetPlayerIcon, m_funcSetVOIPIcon;
|
|
|
|
public:
|
|
virtual bool setupControl(UIScene* scene, IggyValuePath* parent,
|
|
const std::string& controlName);
|
|
|
|
using UIControl_ButtonList::addItem;
|
|
void addItem(const std::wstring& label, int iPlayerIcon, int iVOIPIcon);
|
|
void setPlayerIcon(int iId, int iPlayerIcon);
|
|
void setVOIPIcon(int iId, int iVOIPIcon);
|
|
}; |