Change Engine/src to Engine/Source.

This commit is contained in:
scorpioblood
2024-05-23 21:41:20 +02:00
parent 715feebf0c
commit bb98da5e79
39 changed files with 0 additions and 941 deletions

View 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>;