aboutsummaryrefslogtreecommitdiffstats
path: root/tests/component_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/component_test.cpp')
-rw-r--r--tests/component_test.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/component_test.cpp b/tests/component_test.cpp
deleted file mode 100644
index e5a381cf..00000000
--- a/tests/component_test.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
-#include <yage/entity/entity.h>
-#include <yage/entity/component.h>
-#include <yage/entity/system.h>
-
-struct Position {
- double x;
- double y;
-
- Position(double x_i, double y_i) : x(x_i), y(y_i) {}
-};
-
-int main() {
- EntityManager em();
- Entity player = em.createEntity();
-}