mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2026-02-24 21:51:48 +01:00
35 lines
730 B
C#
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; }
|
|
}
|