LeviLamina
Loading...
Searching...
No Matches
CurveBase.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace mce {
6
7struct CurveBase {
8public:
9 // CurveBase inner types declare
10 // clang-format off
11 struct ControlPoint;
12 // clang-format on
13
14 // CurveBase inner types define
15 enum class Type : uint {};
16
17 struct ControlPoint {
18 public:
19 // ControlPoint inner types define
20 union Data {};
21 };
22};
23
24} // namespace mce
Definition CurveBase.h:17
Definition CurveBase.h:7
Definition CurveBase.h:20