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