mirror of
https://github.com/kwsch/NHSE.git
synced 2026-05-01 02:56:59 -05:00
14 lines
212 B
C#
14 lines
212 B
C#
using System;
|
|
|
|
namespace NHSE.Core
|
|
{
|
|
[Flags]
|
|
public enum ItemRemakeDesignSource
|
|
{
|
|
None = 0,
|
|
Common = 1,
|
|
MyDesign = 2,
|
|
CommonAndMyDesign = Common | MyDesign,
|
|
}
|
|
}
|