From 77dd483fa3f5af94f3dd04f4daefd2555b938c73 Mon Sep 17 00:00:00 2001
From: Joseph Walton-Rivers <joseph@walton-rivers.uk>
Date: Sat, 23 Jul 2022 16:05:24 +0100
Subject: [PATCH] placeholder for the datatypes i'll need for the new ECS

---
 include/fggl/ds/placeholder.hpp | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 include/fggl/ds/placeholder.hpp

diff --git a/include/fggl/ds/placeholder.hpp b/include/fggl/ds/placeholder.hpp
new file mode 100644
index 0000000..e1cdfdc
--- /dev/null
+++ b/include/fggl/ds/placeholder.hpp
@@ -0,0 +1,28 @@
+/*
+ * This file is part of FGGL.
+ *
+ * FGGL is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ *
+ * FGGL is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
+ * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License along with FGGL.
+ * If not, see <https://www.gnu.org/licenses/>.
+ */
+
+//
+// Wrappers for types that probably should be implemented, but can be faked for now.
+// These are placeholders for the more advanced/specialist data structures we should be using, but mocked out using
+// more basic ones.
+//
+
+#ifndef FGGL_DS_PLACEHOLDER_HPP
+#define FGGL_DS_PLACEHOLDER_HPP
+
+namespace fggl::ds {
+
+} // namespace fggl::ds
+
+#endif //FGGL_DS_PLACEHOLDER_HPP
-- 
GitLab