using System;
using JetBrains.Annotations;
using Robust.Shared.Analyzers;
using Robust.Shared.GameObjects;
namespace Content.Shared.Interaction
{
///
/// This interface gives components behavior when being clicked on by a user with an empty hand
/// who is in range and has unobstructed reach of the target entity (allows inside blockers).
///
[RequiresExplicitImplementation]
public interface IInteractHand
{
///
/// Called when a player directly interacts with an empty hand when user is in range of the target entity.
///
[Obsolete("Use InteractHandEvent instead")]
bool InteractHand(InteractHandEventArgs eventArgs);
}
public sealed class InteractHandEventArgs : EventArgs, ITargetedInteractEventArgs
{
public InteractHandEventArgs(EntityUid user, EntityUid target)
{
User = user;
Target = target;
}
public EntityUid User { get; }
public EntityUid Target { get; }
}
///
/// Raised directed on a target entity when it is interacted with by a user with an empty hand.
///
[PublicAPI]
public sealed class InteractHandEvent : HandledEntityEventArgs, ITargetedInteractEventArgs
{
///
/// Entity that triggered the interaction.
///
public EntityUid User { get; }
///
/// Entity that was interacted on.
///
public EntityUid Target { get; }
public InteractHandEvent(EntityUid user, EntityUid target)
{
User = user;
Target = target;
}
}
}