pkmn-classic-framework/library/Structures/IntStatValues.cs
2015-02-06 21:17:25 -05:00

18 lines
417 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PkmnFoundations.Structures
{
public class IntStatValues : StatValues<int>
{
public IntStatValues(int hp, int attack, int defense, int speed, int special_attack, int special_defense)
: base(hp, attack, defense, special_attack, special_attack, special_defense)
{
}
}
}