mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-20 01:13:17 +00:00
10 lines
199 B
C#
10 lines
199 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
public interface IMemoryOT
|
|||
|
{
|
|||
|
int OT_Memory { get; }
|
|||
|
int OT_Intensity { get; }
|
|||
|
int OT_Feeling { get; }
|
|||
|
int OT_TextVar { get; }
|
|||
|
}
|
|||
|
}
|