mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-07 00:37:12 +00:00
18 lines
463 B
C++
18 lines
463 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "UIControl.h"
|
|
#include "Minecraft.Client/Linux/Iggy/include/iggy.h"
|
|
#include "Minecraft.Client/Common/Source Files/UI/UIScene.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);
|
|
}; |