fish-station/Content.Shared/_Sunrise/Biocode/AttemptThrowBiocodeEvent.cs
banumbas 2dfac23510
Бола синдиката и СБ (#3300)
Co-authored-by: worstplayerever <worstplayerever912@gmail.com>
Co-authored-by: Vigers Ray <60344369+VigersRay@users.noreply.github.com>
2025-12-25 20:02:09 +03:00

12 lines
396 B
C#

namespace Content.Shared._Sunrise.Biocode;
/// <summary>
/// Raised when attempting to throw an entity to check if the user can throw it based on biocode restrictions.
/// </summary>
[ByRefEvent]
public struct AttemptThrowBiocodeEvent(EntityUid itemUid, EntityUid? user)
{
public readonly EntityUid ItemUid = itemUid;
public readonly EntityUid? User = user;
public bool Cancelled;
}