mirror of
https://github.com/kwsch/pkNX.git
synced 2026-05-05 20:35:23 -05:00
File scoped namespaces for all lib projects netstandard2.0 => net6; now uniform. bye netframework!
10 lines
170 B
C#
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; }
|
|
}
|