aboutsummaryrefslogtreecommitdiffstats
path: root/src/projectile.hpp
blob: e7d847309a9a9541b9bb0940d8308c08580d252d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef PROJECTILE_H
#define PROJECTILE_H

#include <raylib.h>

// FIXME: Unused class

typedef struct Projectile {
    int posX, posY;
    Vector2 dir;
    float radius;
    float damage;
} Projectile;

#endif /* PROJECTILE_H */