roguish/combat.hpp

11 lines
127 B
C++

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