4 lines
150 B
C++
Raw Normal View History

2023-06-16 01:41:38 -05:00
#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){};