mirror of
https://github.com/kwsch/PKHeX
synced 2025-01-07 01:58:46 +00:00
8 lines
160 B
C#
8 lines
160 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Combined interface for OT and HT memories.
|
|
/// </summary>
|
|
public interface ITrainerMemories : IMemoryOT, IMemoryHT
|
|
{
|
|
}
|