mirror of
https://github.com/Zelda64Recomp/Zelda64Recomp.git
synced 2026-02-25 23:11:24 +00:00
21 lines
463 B
C++
21 lines
463 B
C++
#ifndef RECOMPUI_ELEMENT_DESCRIPTION_H
|
|
#define RECOMPUI_ELEMENT_DESCRIPTION_H
|
|
|
|
#include "common.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
|