mirror of
https://github.com/kwsch/NHSE.git
synced 2026-05-20 09:18:01 -05:00
15 lines
274 B
C#
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,
|
|
} |