4 lines
150 B
C++
4 lines
150 B
C++
|
#include "Bullet.h"
|
||
|
|
||
|
Bullet::Bullet(vf2d pos,vf2d vel,float radius,int damage,Pixel col)
|
||
|
:pos(pos),vel(vel),radius(radius),damage(damage),col(col){};
|