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

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

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 @@ using System.Linq;
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 @@ using System.Linq;
namespace PKHeX.Core
{
/// <summary>
/// Logic for getting valid movesets.
/// </summary>
public static class MoveSetApplicator
{
/// <summary>

View file

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

View file

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