blob: e25e5f47844a816e2b753df8b0115a93aa2bf92a (
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>
class Projectile {
Vector2 const& direction;
Vector2 const& position;
public:
Projectile(Vector2 const& direction, Vector2 const& position);
~Projectile();
};
#endif /* PROJECTILE_H */
|