mirror of
https://github.com/Zelda64Recomp/Zelda64Recomp.git
synced 2025-12-24 17:02:43 +00:00
19 lines
No EOL
357 B
C++
19 lines
No EOL
357 B
C++
#pragma once
|
|
|
|
#include "ui_element.h"
|
|
|
|
namespace recompui {
|
|
|
|
enum class LabelStyle {
|
|
Small,
|
|
Normal,
|
|
Large
|
|
};
|
|
|
|
class Label : public Element {
|
|
public:
|
|
Label(LabelStyle label_style, Element *parent);
|
|
Label(const std::string &text, LabelStyle label_style, Element *parent);
|
|
};
|
|
|
|
} // namespace recompui
|