Split file

This commit is contained in:
Kurt 2020-08-22 11:59:43 -07:00
parent a62324a5a1
commit 816f35d042
2 changed files with 15 additions and 11 deletions

View file

@ -322,15 +322,4 @@ namespace PKHeX.Core
return false; return false;
} }
} }
public sealed class EncounterStatic6 : EncounterStatic, IContestStats
{
internal IReadOnlyList<int> Contest { set => this.SetContestStats(value); }
public int CNT_Cool { get; set; }
public int CNT_Beauty { get; set; }
public int CNT_Cute { get; set; }
public int CNT_Smart { get; set; }
public int CNT_Tough { get; set; }
public int CNT_Sheen { get; set; }
}
} }

View file

@ -0,0 +1,15 @@
using System.Collections.Generic;
namespace PKHeX.Core
{
public sealed class EncounterStatic6 : EncounterStatic, IContestStats
{
internal IReadOnlyList<int> Contest { set => this.SetContestStats(value); }
public int CNT_Cool { get; set; }
public int CNT_Beauty { get; set; }
public int CNT_Cute { get; set; }
public int CNT_Smart { get; set; }
public int CNT_Tough { get; set; }
public int CNT_Sheen { get; set; }
}
}