#pragma once #define HK_MATH_H #include #include #include #include #include #include #include #include #include #include namespace hkMath { template HK_FORCE_INLINE T1 max2(T1 x, T2 y) { return x > static_cast(y) ? x : static_cast(y); } } // namespace hkMath