Files
tbd-station-14/Content.Shared/Pointing/PointingEvents.cs
2023-09-11 09:42:41 +10:00

20 lines
441 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Pointing;
// TODO just make pointing properly predicted?
// So true
/// <summary>
/// Event raised when someone runs the client-side pointing verb.
/// </summary>
[Serializable, NetSerializable]
public sealed class PointingAttemptEvent : EntityEventArgs
{
public NetEntity Target;
public PointingAttemptEvent(NetEntity target)
{
Target = target;
}
}