NcEngine
Curve.h
Go to the documentation of this file.
1
5#pragma once
6
7#include <cstdint>
8
9namespace nc
10{
12enum class CurveType : uint8_t
13{
14 Linear,
15 EaseIn,
16 EaseOut,
17 EaseInOut,
18 Spike,
19 Constant
20};
21} // namespace nc
CurveType
Common types of curves.
Definition: Curve.h:13