mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
More xmldoc
This commit is contained in:
parent
2f078e6565
commit
b64edb751d
8 changed files with 21 additions and 3 deletions
|
@ -71,4 +71,4 @@ namespace PKHeX.Core
|
|||
pk.IV_ATK = rnd.Next(16);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -21,4 +21,4 @@
|
|||
/// <param name="hiddenPowerType">Desired Hidden Power typing.</param>
|
||||
public static void SetHiddenPower(this PKM pk, MoveType hiddenPowerType) => pk.SetHiddenPower((int)hiddenPowerType);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,6 +3,9 @@ using System.Linq;
|
|||
|
||||
namespace PKHeX.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// Logic for modifying the <see cref="PKM.Markings"/>.
|
||||
/// </summary>
|
||||
public static class MarkingApplicator
|
||||
{
|
||||
/// <summary>
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
namespace PKHeX.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// Logic for modifying the Memory parameters of a <see cref="PKM"/>.
|
||||
/// </summary>
|
||||
public static class MemoryApplicator
|
||||
{
|
||||
/// <summary>
|
||||
|
|
|
@ -4,6 +4,9 @@ using System.Linq;
|
|||
|
||||
namespace PKHeX.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// Logic for applying a moveset to a <see cref="PKM"/>.
|
||||
/// </summary>
|
||||
public static class MoveApplicator
|
||||
{
|
||||
/// <summary>
|
||||
|
|
|
@ -4,6 +4,9 @@ using System.Linq;
|
|||
|
||||
namespace PKHeX.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// Logic for getting valid movesets.
|
||||
/// </summary>
|
||||
public static class MoveSetApplicator
|
||||
{
|
||||
/// <summary>
|
||||
|
|
|
@ -3,6 +3,9 @@ using System.Collections.Generic;
|
|||
|
||||
namespace PKHeX.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// Logic for modifying the Technical Record flags of a <see cref="PK8"/>.
|
||||
/// </summary>
|
||||
public static class TechnicalRecordApplicator
|
||||
{
|
||||
/// <summary>
|
||||
|
@ -61,4 +64,4 @@ namespace PKHeX.Core
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,6 +4,9 @@ using System.Linq;
|
|||
|
||||
namespace PKHeX.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// Sorting methods for <see cref="IEnumerable{PKM}"></see> lists.
|
||||
/// </summary>
|
||||
public static class PKMSorting
|
||||
{
|
||||
/// <summary>
|
||||
|
|
Loading…
Reference in a new issue