Esempio n. 1
0
 public Special()
 {
     _name = "";
     _icon = new Sprite();
     _description = "Description goes here";
     enhancedAttribute = enhance.none;
 }
Esempio n. 2
0
 public Special(string name, string threeChar, string description, enhance enhanced, Sprite icon = null)
 {
     this._name = name;
     this._3CharDesig = threeChar;
     this._description = description;
     this.enhancedAttribute = enhanced;
     this.Icon = icon;
 }