mirror of
https://github.com/kwsch/NHSE.git
synced 2026-04-27 00:56:57 -05:00
tried to split off some grid stuff because rooms don't need to know about acres; whatever
17 lines
321 B
C#
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,
|
|
}
|
|
}
|