Reduce verb menu pop-in / rearranging (#6611)
This commit is contained in:
18
Content.Shared/Pointing/PointingEvents.cs
Normal file
18
Content.Shared/Pointing/PointingEvents.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using Robust.Shared.Serialization;
|
||||
|
||||
namespace Content.Shared.Pointing;
|
||||
|
||||
// TODO just make pointing properly predicted?
|
||||
/// <summary>
|
||||
/// Event raised when someone runs the client-side pointing verb.
|
||||
/// </summary>
|
||||
[Serializable, NetSerializable]
|
||||
public sealed class PointingAttemptEvent : EntityEventArgs
|
||||
{
|
||||
public EntityUid Target;
|
||||
|
||||
public PointingAttemptEvent(EntityUid target)
|
||||
{
|
||||
Target = target;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user