OMOTE/Platformio/OmoteUI/core/UIElement.cpp
2023-09-16 15:34:16 -05:00

9 lines
188 B
C++

#include "UIElement.hpp"
namespace UI {
UIElement::UIElement(lv_obj_t *aLvglSelf, uint16_t aId)
: mLvglSelf(aLvglSelf), mId(aId) {
mLvglSelf->user_data = this;
}
} // namespace UI