pkNX/pkNX.Structures/VsTrainer/Base/IMoveset.cs
Kurt 2578ba073c Refactoring
File scoped namespaces for all lib projects
netstandard2.0 => net6; now uniform. bye netframework!
2022-10-01 17:08:17 -07:00

10 lines
170 B
C#

namespace pkNX.Structures;
public interface IMoveset
{
int Move1 { get; set; }
int Move2 { get; set; }
int Move3 { get; set; }
int Move4 { get; set; }
}