Example #1
0
 public Item(bool used, int stack, string name, Animations.HerdAnimation animation)
 {
     Used = used;
     Stack = stack;
     Name = name;
     this.animation = animation;
 }
Example #2
0
 //constructors
 public Item()
 {
     Used = false;
     Stack = 0;
     Name = "null";
     animation = new Animations.HerdAnimation();
 }