mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2026-02-19 05:57:42 +01:00
Make states work.
This commit is contained in:
parent
25ddbb1310
commit
a4de13f228
27 changed files with 787 additions and 857 deletions
|
|
@ -11,7 +11,26 @@ public readonly record struct ApplySettings(
|
|||
StateSource Source = StateSource.Manual,
|
||||
bool RespectManual = false,
|
||||
bool FromJobChange = false,
|
||||
bool UseSingleSource = false);
|
||||
bool UseSingleSource = false)
|
||||
{
|
||||
public static readonly ApplySettings Manual = new()
|
||||
{
|
||||
Key = 0,
|
||||
Source = StateSource.Manual,
|
||||
FromJobChange = false,
|
||||
RespectManual = false,
|
||||
UseSingleSource = false,
|
||||
};
|
||||
|
||||
public static readonly ApplySettings Game = new()
|
||||
{
|
||||
Key = 0,
|
||||
Source = StateSource.Game,
|
||||
FromJobChange = false,
|
||||
RespectManual = false,
|
||||
UseSingleSource = false,
|
||||
};
|
||||
}
|
||||
|
||||
public interface IDesignEditor
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue