#include "Item.h" Item::Item(string n, int h, int a, int d) { name = n; health = h; attack = a; defense = d; }