Delta-v/Content.Server/DeltaV/StationEvents/NextEvent/NextEventComponent.cs

20 lines
512 B
C#

using Robust.Shared.Prototypes;
namespace Content.Server.DeltaV.StationEvents.NextEvent;
[RegisterComponent, Access(typeof(NextEventSystem))]
public sealed partial class NextEventComponent : Component
{
/// <summary>
/// Id of the next event that will be run by EventManagerSystem.
/// </summary>
[DataField]
public EntProtoId? NextEventId;
/// <summary>
/// Round time of the scheduler's next station event.
/// </summary>
[DataField]
public TimeSpan NextEventTime;
}