mirror of
https://github.com/mm201/pkmn-classic-framework.git
synced 2026-03-22 01:44:20 -05:00
20 lines
486 B
C#
20 lines
486 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, speed, special_attack, special_defense)
|
|
{
|
|
}
|
|
|
|
public IntStatValues(IEnumerable<int> s) : base(s)
|
|
{
|
|
}
|
|
}
|
|
}
|