OMOTE/Platformio/OmoteUI/core/UIElement.hpp

16 lines
No EOL
187 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;
};
}