OMOTE/Platformio/OmoteUI/UIs/UIBase.hpp
MatthewColvin 52cb2e7ce2 Add background color setter in UIElement
Use main to spawn refacoredBasic UI
Start using new screen manager and
screen concepts
2023-09-16 16:44:15 -05:00

20 lines
No EOL
297 B
C++

// OMOTE UI
// 2023 Matthew Colvin
#pragma once
#include "HardwareAbstract.hpp"
#include <memory>
namespace UI {
class UIBase {
public:
UIBase(std::shared_ptr<HardwareAbstract> aHardware);
void loopHandler();
protected:
std::shared_ptr<HardwareAbstract> mHardware;
};
} // namespace UI