LeviLamina
Loading...
Searching...
No Matches
BrushShapeWeightedSphere.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Editor::ClientBrush {
6
8public:
9 // BrushShapeWeightedSphere inner types declare
10 // clang-format off
11 struct Calculator;
12 struct ConstantCalculator;
14 struct LinearCalculator;
16 // clang-format on
17
18 // BrushShapeWeightedSphere inner types define
19 enum class WeightingType : int {};
20
21 struct Calculator {};
22
23 struct ConstantCalculator {};
24
26
27 struct LinearCalculator {};
28
29 struct QuadraticCalculator {};
30};
31
32} // namespace Editor::ClientBrush
Definition BrushShapeWeightedSphere.h:21
Definition BrushShapeWeightedSphere.h:7