2024-09-30 18:50:58 +01:00
|
|
|
#pragma once
|
|
|
|
#include <Ottobit/OttobitModel.hpp>
|
|
|
|
#include <halp/layout.hpp>
|
|
|
|
|
|
|
|
namespace Example
|
|
|
|
{
|
|
|
|
struct Ottobit::ui
|
|
|
|
{
|
|
|
|
using enum halp::colors;
|
|
|
|
using enum halp::layouts;
|
|
|
|
|
2024-09-30 22:30:26 +01:00
|
|
|
halp_meta(name, "Ottobit")
|
2024-10-01 00:43:19 +01:00
|
|
|
halp_meta(layout, hbox)
|
2024-09-30 18:50:58 +01:00
|
|
|
halp_meta(background, dark)
|
|
|
|
|
2024-09-30 22:30:26 +01:00
|
|
|
halp::item<&ins::bits> bits;
|
2024-10-01 00:43:19 +01:00
|
|
|
|
|
|
|
halp::item<&ins::rate> rate;
|
2024-09-30 18:50:58 +01:00
|
|
|
};
|
|
|
|
}
|