namespace PKHeX.Core { /// /// Common Encounter Properties base interface. /// /// public interface IEncounterable : IEncounterInfo { string Name { get; } string LongName { get; } } }