mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 17:33:37 +00:00
14 lines
329 B
C++
14 lines
329 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 std::string& controlName);
|
|
|
|
void setTextureName(const std::wstring& iconName);
|
|
}; |