Loading...
Searching...
No Matches
MappingColors.hpp
1#pragma once
2#include <Curve/CurveStyle.hpp>
3
4namespace Mapping
5{
6class Colors
7{
8public:
9 Colors(const score::Skin& s);
10
11 const auto& style() const { return m_style; }
12
13private:
14 Curve::Style m_style;
15};
16}
Definition MappingColors.hpp:7
Definition Skin.hpp:93
Definition CurveStyle.hpp:13