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