aboutsummaryrefslogtreecommitdiffstats
path: root/yage/engine/component.h
diff options
context:
space:
mode:
Diffstat (limited to 'yage/engine/component.h')
-rw-r--r--yage/engine/component.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/yage/engine/component.h b/yage/engine/component.h
new file mode 100644
index 00000000..9fd85d82
--- /dev/null
+++ b/yage/engine/component.h
@@ -0,0 +1,21 @@
+/** ---------------------------------------------------------------------------
+ * @file: component.h
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
+ * MIT License, see LICENSE file for more details.
+ * ----------------------------------------------------------------------------
+ */
+
+#ifndef YAGE_ENGINE_COMPONENT_H
+#define YAGE_ENGINE_COMPONENT_H
+
+class Component
+{
+};
+
+enum class ComponentEnum {
+ POSITION,
+ NAX_COMPONENTS,
+};
+
+#endif