aboutsummaryrefslogtreecommitdiffstats
path: root/tests/component_test.cpp
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-06-22 00:07:17 +0100
committerYann Herklotz <ymherklotz@gmail.com>2018-06-22 00:07:17 +0100
commit3cc80b221c34dcc15579dcf8bf7f4fff8c6b5879 (patch)
tree16fc38715f036e259ba858a6dc1e934af248631e /tests/component_test.cpp
parent8e038f0114a6a2f6d2971ac9772bd0a053e3ccef (diff)
downloadYAGE-3cc80b221c34dcc15579dcf8bf7f4fff8c6b5879.tar.gz
YAGE-3cc80b221c34dcc15579dcf8bf7f4fff8c6b5879.zip
Moving test name
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();
-}