Pointing arrow changes (#11097)
This commit is contained in:
17
Content.Shared/Pointing/SharedPointingSystem.cs
Normal file
17
Content.Shared/Pointing/SharedPointingSystem.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user