mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-15 03:50:54 +01:00
8 lines
206 B
C#
8 lines
206 B
C#
namespace Content.Shared.Actions.Events;
|
|
|
|
/// <summary>
|
|
/// Raised on an action entity to get its event.
|
|
/// </summary>
|
|
[ByRefEvent]
|
|
public record struct ActionGetEventEvent(BaseActionEvent? Event = null);
|