From 6cd00aacfa22fed6a54a9b812f6b069ad16feec0 Mon Sep 17 00:00:00 2001 From: untodesu Date: Sun, 29 Jun 2025 22:24:42 +0500 Subject: Move game sources into src subdirectory --- src/core/concepts.hh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/core/concepts.hh (limited to 'src/core/concepts.hh') diff --git a/src/core/concepts.hh b/src/core/concepts.hh new file mode 100644 index 0000000..47b01d2 --- /dev/null +++ b/src/core/concepts.hh @@ -0,0 +1,15 @@ +#ifndef CORE_CONCEPTS_HH +#define CORE_CONCEPTS_HH 1 +#pragma once + +namespace vx +{ +template +concept Arithmetic = std::is_arithmetic_v; +template +concept Integer = std::is_integral_v; +template +concept FloatingPoint = std::is_floating_point_v; +} // namespace vx + +#endif /* CORE_CONCEPTS_HH */ -- cgit