mirror of
https://github.com/kwsch/pk3DS.git
synced 2026-04-21 16:07:35 -05:00
7 lines
171 B
C#
7 lines
171 B
C#
namespace pk3DS.Core.Structures;
|
|
|
|
public abstract class EncounterStatic
|
|
{
|
|
public abstract int Species { get; set; }
|
|
public abstract int HeldItem { get; set; }
|
|
} |