#pragma once #include "components.hpp" struct Combat { int hp; int damage; bool dead; int attack(Combat &target); };