52 lines
1.2 KiB
C#
52 lines
1.2 KiB
C#
#nullable enable
|
|
using System;
|
|
using JetBrains.Annotations;
|
|
using Robust.Shared.Analyzers;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Shared.Throwing
|
|
{
|
|
/// <summary>
|
|
/// This interface gives components behavior when thrown.
|
|
/// </summary>
|
|
[RequiresExplicitImplementation]
|
|
public interface IThrown
|
|
{
|
|
[Obsolete("Use ThrownMessage instead")]
|
|
void Thrown(ThrownEventArgs eventArgs);
|
|
}
|
|
|
|
public class ThrownEventArgs : EventArgs
|
|
{
|
|
public ThrownEventArgs(IEntity user)
|
|
{
|
|
User = user;
|
|
}
|
|
|
|
public IEntity User { get; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Raised when throwing the entity in your hands.
|
|
/// </summary>
|
|
[PublicAPI]
|
|
public class ThrownEvent : HandledEntityEventArgs
|
|
{
|
|
/// <summary>
|
|
/// Entity that threw the item.
|
|
/// </summary>
|
|
public IEntity User { get; }
|
|
|
|
/// <summary>
|
|
/// Item that was thrown.
|
|
/// </summary>
|
|
public IEntity Thrown { get; }
|
|
|
|
public ThrownEvent(IEntity user, IEntity thrown)
|
|
{
|
|
User = user;
|
|
Thrown = thrown;
|
|
}
|
|
}
|
|
}
|