2024-01-27 15:19:52 +03:00
|
|
|
|
namespace Content.Client._White.Cult.Items.VeilShifter;
|
|
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
|
public sealed partial class VeilVisualsComponent : Component
|
|
|
|
|
|
{
|
2024-01-28 17:32:55 +07:00
|
|
|
|
[DataField("stateOn"), ViewVariables(VVAccess.ReadWrite)]
|
2024-01-27 15:19:52 +03:00
|
|
|
|
public string? StateOn = "icon-on";
|
|
|
|
|
|
|
2024-01-28 17:32:55 +07:00
|
|
|
|
[DataField("stateOff"), ViewVariables(VVAccess.ReadWrite)]
|
2024-01-27 15:19:52 +03:00
|
|
|
|
public string? StateOff = "icon";
|
|
|
|
|
|
}
|