20 lines
324 B
C++
20 lines
324 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, hbox)
|
|
halp_meta(background, dark)
|
|
|
|
halp::item<&ins::bits> bits;
|
|
|
|
halp::item<&ins::rate> rate;
|
|
};
|
|
}
|