mirror of
https://github.com/kwsch/pk3DS.git
synced 2026-04-10 10:54:52 -05:00
9 lines
194 B
C#
9 lines
194 B
C#
namespace pk3DS.Core.Structures
|
|
{
|
|
public abstract class EncounterStatic
|
|
{
|
|
public abstract int Species { get; set; }
|
|
public abstract int HeldItem { get; set; }
|
|
}
|
|
}
|