yes
This commit is contained in:
20
Runtime/Includes/Maths/Enums.h
git.filemode.normal_file
20
Runtime/Includes/Maths/Enums.h
git.filemode.normal_file
@@ -0,0 +1,20 @@
|
||||
#ifndef __SCOP_MATHS_ENUMS__
|
||||
#define __SCOP_MATHS_ENUMS__
|
||||
|
||||
#include <cstddef>
|
||||
|
||||
namespace Scop
|
||||
{
|
||||
enum class AngleUnit
|
||||
{
|
||||
Degree = 0,
|
||||
Radian,
|
||||
Turn,
|
||||
|
||||
EndEnum
|
||||
};
|
||||
|
||||
constexpr std::size_t AngleUnitCount = static_cast<std::size_t>(AngleUnit::EndEnum);
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user