mirror of
https://forge.banditvault.co.uk/racoon/MinecraftConsoles.git
synced 2026-05-22 17:34:42 +00:00
14 lines
280 B
C++
14 lines
280 B
C++
#pragma once
|
|
|
|
#include "UIControl.h"
|
|
|
|
class UIControl_BitmapIcon : public UIControl
|
|
{
|
|
private:
|
|
IggyName m_funcSetTextureName;
|
|
|
|
public:
|
|
virtual bool setupControl(UIScene *scene, IggyValuePath *parent, const string &controlName);
|
|
|
|
void setTextureName(const wstring &iconName);
|
|
}; |