18 lines
400 B
C#
18 lines
400 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Pointing;
|
|
|
|
public abstract class SharedPointingSystem : EntitySystem
|
|
{
|
|
[Serializable, NetSerializable]
|
|
protected sealed class PointingArrowComponentState : ComponentState
|
|
{
|
|
public TimeSpan EndTime;
|
|
|
|
public PointingArrowComponentState(TimeSpan endTime)
|
|
{
|
|
EndTime = endTime;
|
|
}
|
|
}
|
|
}
|