pkmn-classic-framework/library/Structures/ByteStatValues.cs

20 lines
497 B
C#

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