aboutsummaryrefslogtreecommitdiffstats
path: root/src/entity.hpp
blob: 190df400a8270bff322e018dc48fc6f0fda79eed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*********************************/
/*   THRESHOLD        (  //      */
/*   entityh           ( )/      */
/*   by salade         )(/       */
/*  ________________  ( /)       */
/* ()__)____________)))))   :^}  */
/*********************************/

#ifndef ENEMY_H_
#define ENEMY_H_

#include "window.hpp"

#include "weapon.hpp"

class Entity {
    public:
        int hp;
        float posX;
        float posY;
        Vector2 direction;
        Weapon * wp;
        Entity();
        ~Entity();
};

#endif // ENEMY_H_