blob: e65222e3a16456bf9226096647e5d8db65b87069 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "projectile.hpp"
#include <raylib.h>
Projectile::Projectile(Vector2 const& dir, Vector2 const& pos)
: direction(dir), position(pos) {}
Projectile::~Projectile() {}
Projectile* Projectile::getProjectile() {
return (this);
}
|