Kishan Takoordyal 73b746ba8f
init
2020-11-14 18:28:26 +04:00

9 lines
128 B
C++

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