mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
19 lines
430 B
C#
19 lines
430 B
C#
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;
|
|
}
|
|
}
|