Files
LazyByteDev b40d5e9d01 src stuff
2026-03-02 03:31:00 -05:00

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);
};