#pragma once #include #include struct Player { Player(); void update(float dt); void draw(); template bool collide(const std::vector& bullets) const; Vector2 m_position; }; #include "Player-inl.h"