20 lines
326 B
C++
20 lines
326 B
C++
#pragma once
|
|
#include <Ottobit/OttobitModel.hpp>
|
|
#include <halp/layout.hpp>
|
|
|
|
namespace Meris
|
|
{
|
|
struct Ottobit::ui
|
|
{
|
|
using enum halp::colors;
|
|
using enum halp::layouts;
|
|
|
|
halp_meta(name, "Ottobit")
|
|
halp_meta(layout, hbox)
|
|
halp_meta(background, dark)
|
|
|
|
halp::item<&ins::bits> bits;
|
|
|
|
halp::item<&ins::rate> rate;
|
|
};
|
|
}
|