9 lines
128 B
C++
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;
|
|
}
|