NHSE/NHSE.Core/Structures/Item/Remake/ItemRemakeDesignSource.cs
2026-01-13 16:02:58 -06:00

15 lines
274 B
C#

using System;
namespace NHSE.Core;
/// <summary>
/// Determines how an item's secondary customization value is used.
/// </summary>
[Flags]
public enum ItemRemakeDesignSource
{
None = 0,
Common = 1,
MyDesign = 2,
CommonAndMyDesign = Common | MyDesign,
}