Files
17 lines
492 B
C#
17 lines
492 B
C#
using Robust.Shared.GameStates;
|
|||
|
|||
namespace Content.Shared.Fax.Components;
|
|||
/// <summary>
|
|||
/// Entity with this component can be faxed.
|
|||
/// </summary>
|
|||
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
|||
public sealed partial class FaxableObjectComponent : Component
|
|||
{
|
|||
/// <summary>
|
|||
/// Sprite to use when inserting an object.
|
|||
/// </summary>
|
|||
[ViewVariables(VVAccess.ReadWrite)]
|
|||
[DataField, AutoNetworkedField]
|
|||
public string InsertingState = "inserting";
|
|||
}
|