#pragma once
#include "olcPixelGameEngine.h"

struct Bullet{
	vf2d pos;
	vf2d vel;
	float radius;
	int damage;
	Pixel col;
	Bullet(vf2d pos,vf2d vel,float radius,int damage,Pixel col=WHITE);
};