18 lines
473 B
C#
18 lines
473 B
C#
using Robust.Shared.GameStates;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Salvage.Expeditions;
|
|
|
|
[NetworkedComponent]
|
|
public abstract partial class SharedSalvageExpeditionComponent : Component
|
|
{
|
|
[ViewVariables(VVAccess.ReadWrite), DataField("stage")]
|
|
public ExpeditionStage Stage = ExpeditionStage.Added;
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed class SalvageExpeditionComponentState : ComponentState
|
|
{
|
|
public ExpeditionStage Stage;
|
|
}
|