score-avnd-senior/Ottobit/OttobitUi.hpp
2024-09-30 18:50:58 +01:00

19 lines
336 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, "Main")
halp_meta(layout, vbox)
halp_meta(background, dark)
halp::label title{"My First Processor"};
halp::item<&ins::gain> gain;
};
}