score-avnd-senior/Senior/SeniorUi.hpp

21 lines
324 B
C++
Raw Normal View History

2024-09-30 18:50:58 +01:00
#pragma once
2024-10-06 23:26:13 +01:00
#include <Senior/SeniorModel.hpp>
2024-09-30 18:50:58 +01:00
#include <halp/layout.hpp>
2024-10-06 23:26:13 +01:00
namespace Ottobit
2024-09-30 18:50:58 +01:00
{
2024-10-06 23:26:13 +01:00
struct Senior::ui
2024-09-30 18:50:58 +01:00
{
using enum halp::colors;
using enum halp::layouts;
2024-10-06 23:26:13 +01:00
halp_meta(name, "Senior")
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
};
}