mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2025-12-12 10:17:23 +01:00
Fix some .net update issues.
This commit is contained in:
parent
8160f420db
commit
8add6e5519
4 changed files with 7 additions and 7 deletions
|
|
@ -6,8 +6,8 @@ namespace Glamourer.Gui.Customization;
|
|||
|
||||
public struct CustomizeParameterDrawData(CustomizeParameterFlag flag, in DesignData data)
|
||||
{
|
||||
private IDesignEditor _editor;
|
||||
private object _object;
|
||||
private IDesignEditor _editor = null!;
|
||||
private object _object = null!;
|
||||
public readonly CustomizeParameterFlag Flag = flag;
|
||||
public bool Locked;
|
||||
public bool DisplayApplication;
|
||||
|
|
|
|||
|
|
@ -7,8 +7,8 @@ namespace Glamourer.Gui.Equipment;
|
|||
|
||||
public struct BonusDrawData(BonusItemFlag slot, in DesignData designData)
|
||||
{
|
||||
private IDesignEditor _editor;
|
||||
private object _object;
|
||||
private IDesignEditor _editor = null!;
|
||||
private object _object = null!;
|
||||
public readonly BonusItemFlag Slot = slot;
|
||||
public bool Locked;
|
||||
public bool DisplayApplication;
|
||||
|
|
|
|||
|
|
@ -7,8 +7,8 @@ namespace Glamourer.Gui.Equipment;
|
|||
|
||||
public struct EquipDrawData(EquipSlot slot, in DesignData designData)
|
||||
{
|
||||
private IDesignEditor _editor;
|
||||
private object _object;
|
||||
private IDesignEditor _editor = null!;
|
||||
private object _object = null!;
|
||||
public readonly EquipSlot Slot = slot;
|
||||
public bool Locked;
|
||||
public bool DisplayApplication;
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 63ffca0ff0ad626605120e58809c888d92053d64
|
||||
Subproject commit c525072299d5febd2bb638ab229060b0073ba6a6
|
||||
Loading…
Add table
Add a link
Reference in a new issue