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

16 lines
No EOL
199 B
C++

#pragma once
#include "lvgl.h"
namespace UI {
class UIElement {
public:
UIElement(lv_obj_t *aLvglSelf, uint16_t aId = 0);
protected:
lv_obj_t *mLvglSelf;
uint16_t mId;
};
} // namespace UI