mirror of
https://github.com/Zelda64Recomp/Zelda64Recomp.git
synced 2025-10-30 08:03:03 +00:00
15 lines
285 B
C++
15 lines
285 B
C++
#include "ui_span.h"
|
|
|
|
#include <cassert>
|
|
|
|
namespace recompui {
|
|
|
|
Span::Span(Element *parent) : Element(parent, 0, "span") {
|
|
set_font_style(FontStyle::Normal);
|
|
}
|
|
|
|
Span::Span(Element *parent, const std::string &text) : Span(parent) {
|
|
set_text(text);
|
|
}
|
|
|
|
};
|