score-avnd-senior/Ottobit/OttobitUi.hpp

19 lines
325 B
C++

#pragma once
#include <Ottobit/OttobitModel.hpp>
#include <halp/layout.hpp>
namespace Example
{
struct Ottobit::ui
{
using enum halp::colors;
using enum halp::layouts;
halp_meta(name, "Ottobit")
halp_meta(layout, vbox)
halp_meta(background, dark)
halp::label title{"Bits"};
halp::item<&ins::bits> bits;
};
}