More xmldoc

This commit is contained in:
Kurt
2021-04-20 01:50:04 -07:00
parent 2f078e6565
commit b64edb751d
8 changed files with 21 additions and 3 deletions

View File

@@ -71,4 +71,4 @@ public static void SetAttackIVFromGender(this PKM pk, int gender)
pk.IV_ATK = rnd.Next(16);
}
}
}
}

View File

@@ -21,4 +21,4 @@ public static void SetHiddenPower(this PKM pk, int hiddenPowerType)
/// <param name="hiddenPowerType">Desired Hidden Power typing.</param>
public static void SetHiddenPower(this PKM pk, MoveType hiddenPowerType) => pk.SetHiddenPower((int)hiddenPowerType);
}
}
}

View File

@@ -3,6 +3,9 @@
namespace PKHeX.Core
{
/// <summary>
/// Logic for modifying the <see cref="PKM.Markings"/>.
/// </summary>
public static class MarkingApplicator
{
/// <summary>

View File

@@ -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>

View File

@@ -4,6 +4,9 @@
namespace PKHeX.Core
{
/// <summary>
/// Logic for applying a moveset to a <see cref="PKM"/>.
/// </summary>
public static class MoveApplicator
{
/// <summary>

View File

@@ -4,6 +4,9 @@
namespace PKHeX.Core
{
/// <summary>
/// Logic for getting valid movesets.
/// </summary>
public static class MoveSetApplicator
{
/// <summary>

View File

@@ -3,6 +3,9 @@
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 @@ public static void SetRecordFlags(this PKM pk)
}
}
}
}
}

View File

@@ -4,6 +4,9 @@
namespace PKHeX.Core
{
/// <summary>
/// Sorting methods for <see cref="IEnumerable{PKM}"></see> lists.
/// </summary>
public static class PKMSorting
{
/// <summary>