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);
|