NHSE/NHSE.Core/Structures/Item/Remake/ItemRemakeDesignSource.cs
Kurt 084542d367 xmldoc
tried to split off some grid stuff because rooms don't need to know about acres; whatever
2020-05-23 13:08:14 -07:00

17 lines
321 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,
}
}