#pragma once #include "PhanesEnginePCH.h" // Typenames with RealType constrain have to be floating point numbers. template concept RealType = std::is_floating_point_v; // Typenames with IntType constrain have to be integer number. template concept IntType = std::is_integral_v;