Glamourer/Glamourer/Gui/Materials/ColorRowClipboard.cs

35 lines
730 B
C#

using Glamourer.Interop.Material;
using Penumbra.GameData.Files.MaterialStructs;
namespace Glamourer.Gui.Materials;
public static class ColorRowClipboard
{
public static bool IsSet { get; private set; }
public static bool IsTableSet { get; private set; }
public static ColorTable.Table Table
{
get;
set
{
IsTableSet = true;
field = value;
}
}
public static ColorRow.Mode TableMode { get; set; }
public static ColorRow Row
{
get;
set
{
IsSet = true;
field = value;
}
}
public static ColorRow.Mode RowMode { get; set; }
}