mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-12 23:37:07 +00:00
ce935edcdf
no functional change
11 lines
213 B
C#
11 lines
213 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Setting to fill in data (rejuvenate) when converting an entity.
|
|
/// </summary>
|
|
public enum EntityRejuvenationSetting
|
|
{
|
|
Custom = -1,
|
|
None,
|
|
MissingDataHOME,
|
|
}
|