mirror of
https://github.com/kwsch/PKHeX
synced 2025-03-03 06:47:25 +00:00
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,
|
|
}
|