17 lines
356 B
C#
17 lines
356 B
C#
using Content.Shared.DoAfter;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared._RMC14.Scoping;
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed partial class ScopeDoAfterEvent : SimpleDoAfterEvent
|
|
{
|
|
[DataField]
|
|
public Direction Direction;
|
|
|
|
public ScopeDoAfterEvent(Direction direction)
|
|
{
|
|
Direction = direction;
|
|
}
|
|
}
|