17 lines
No EOL
310 B
C++
17 lines
No EOL
310 B
C++
#include "BasicUI.hpp"
|
|
#include "HardwareSimulator.hpp"
|
|
#include "OmoteUI.hpp"
|
|
#include "omoteconfig.h"
|
|
#include <memory>
|
|
|
|
int main() {
|
|
auto hwSim = std::make_shared<HardwareSimulator>();
|
|
hwSim->init();
|
|
|
|
auto ui = UI::BasicUI(hwSim);
|
|
// ui->layout_UI();
|
|
|
|
while (true) {
|
|
ui.loopHandler();
|
|
}
|
|
} |