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