Entityx usage and fixed release types

This commit is contained in:
Julian Nießner
2018-05-28 20:20:29 +02:00
parent fc1d615f91
commit 247eda236d
14 changed files with 142 additions and 19 deletions

View File

@@ -0,0 +1,11 @@
#ifndef DIRECTION_H
#define DIRECTION_H
struct Direction
{
Direction(float x = 0.0f, float y = 0.0f) : x(x), y(y) {}
float x, y;
};
#endif