mirror of
https://github.com/Zelda64Recomp/Zelda64Recomp.git
synced 2025-10-30 08:03:03 +00:00
13 lines
No EOL
359 B
C++
13 lines
No EOL
359 B
C++
#include "ui_container.h"
|
|
|
|
#include <cassert>
|
|
|
|
namespace recompui {
|
|
|
|
Container::Container(Element *parent, FlexDirection direction, JustifyContent justify_content, uint32_t events_enabled) : Element(parent, events_enabled) {
|
|
set_display(Display::Flex);
|
|
set_flex_direction(direction);
|
|
set_justify_content(justify_content);
|
|
}
|
|
|
|
}; |