mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
Split file
This commit is contained in:
parent
a62324a5a1
commit
816f35d042
2 changed files with 15 additions and 11 deletions
|
@ -322,15 +322,4 @@ namespace PKHeX.Core
|
|||
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; }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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; }
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue