Added StatValues.ToString for debug purposes.

This commit is contained in:
Greg Edwards
2015-05-05 11:40:45 -04:00
parent 8dbe0ecc19
commit 4d494840e8

View File

@@ -45,5 +45,10 @@ namespace PkmnFoundations.Structures
Stats[index] = value;
}
}
public override string ToString()
{
return String.Format("{0}/{1}/{2}/{4}/{5}/{3}", Hp, Attack, Defense, Speed, SpecialAttack, SpecialDefense);
}
}
}