score-avnd-senior/Senior/SeniorUi.hpp
2024-10-07 22:53:11 +01:00

30 lines
500 B
C++

#pragma once
#include <Senior/SeniorModel.hpp>
#include <halp/layout.hpp>
namespace Ottobit
{
struct Senior::ui
{
using enum halp::colors;
using enum halp::layouts;
halp_meta(name, "Senior")
halp_meta(layout, vbox)
halp_meta(background, dark)
struct
{
halp_meta(layout, hbox)
halp::item<&ins::bits> bits;
halp::item<&ins::s_rate> s_rate;
} res;
struct
{
halp_meta(layout, hbox)
halp::item<&ins::depth> depth;
halp::item<&ins::freq> freq;
} mod;
};
}