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 --- core/concepts.hh | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 core/concepts.hh (limited to 'core/concepts.hh') diff --git a/core/concepts.hh b/core/concepts.hh deleted file mode 100644 index 47b01d2..0000000 --- a/core/concepts.hh +++ /dev/null @@ -1,15 +0,0 @@ -#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