#include "Weapon.h" #include bool Weapon::aim() { //70% Chans return (rand() % 3 > 0) ? true : false; } void Weapon::shoot(Animal* animal) { animal->putToDeath(); }