blob: 49d98b647b8dc0d6500e56ae35db1a4aad3c1050 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef ENEMY_H_
#define ENEMY_H_
#include "window.hpp"
class Entity {
public:
float posX;
float posY;
Vector2 direction;
Entity();
~Entity();
};
#endif // ENEMY_H_
|