namespace Content.Shared.Interaction.Events; /// /// Raised directed at two entities to indicate that they came into contact, usually as a result of some other interaction. /// /// /// This is currently used by the forensics and disease systems to perform on-contact interactions. /// public sealed class ContactInteractionEvent : HandledEntityEventArgs { public EntityUid Other; public ContactInteractionEvent(EntityUid other) { Other = other; } }