mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2025-03-12 14:56:37 +01:00
23 lines
519 B
C++
23 lines
519 B
C++
#ifndef RECOMPUI_ELEMENT_DESCRIPTION_H
|
|
#define RECOMPUI_ELEMENT_DESCRIPTION_H
|
|
|
|
#include "RmlUi/Core/Element.h"
|
|
#include "../config_options/ConfigOption.h"
|
|
|
|
namespace recompui {
|
|
|
|
class ElementDescription : public Rml::Element {
|
|
public:
|
|
ElementDescription(const Rml::String& tag);
|
|
virtual ~ElementDescription();
|
|
|
|
std::string config_key;
|
|
protected:
|
|
void update_text(const std::string& text_rml);
|
|
private:
|
|
void OnAttributeChange(const Rml::ElementAttributes& changed_attributes);
|
|
};
|
|
|
|
} // namespace recompui
|
|
#endif
|