Разрешаю кушать

This commit is contained in:
BIGZi0348
2024-12-13 20:47:05 +03:00
parent ef466ba89a
commit d993f7cff5
4 changed files with 24 additions and 3 deletions

View File

@@ -22,4 +22,18 @@ public sealed partial class MaskComponent : Component
[DataField, AutoNetworkedField]
public string EquippedPrefix = "toggled";
/// <summary>
/// WD Ahead of wizden.
/// When <see langword="true"/> will function normally, otherwise will not react to events
/// </summary>
[DataField("enabled"), AutoNetworkedField]
public bool IsEnabled = true;
/// <summary>
/// WD Ahead of wizden.
/// When <see langword="true"/> will disable <see cref="IsEnabled"/> when folded
/// </summary>
[DataField, AutoNetworkedField]
public bool DisableOnFolded;
}