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

#include <raylib.h>

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

#endif /* PROJECTILE_H */