Change Engine/src to Engine/Source.
This commit is contained in:
11
Engine/Source/Runtime/Core/public/Misc/Boilerplate.h
Normal file
11
Engine/Source/Runtime/Core/public/Misc/Boilerplate.h
Normal file
@@ -0,0 +1,11 @@
|
||||
#pragma once
|
||||
|
||||
#include "PhanesEnginePCH.h"
|
||||
|
||||
// Typenames with RealType constrain have to be floating point numbers.
|
||||
template<typename T>
|
||||
concept RealType = std::is_floating_point_v<T>;
|
||||
|
||||
// Typenames with IntType constrain have to be integer number.
|
||||
template<typename T>
|
||||
concept IntType = std::is_integral_v<T>;
|
Reference in New Issue
Block a user