Files
tbd-station-14/Content.Shared/Tabletop/Events/TabletopStopPlayingEvent.cs
2023-09-11 09:42:41 +10:00

22 lines
591 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Tabletop.Events
{
/// <summary>
/// An event ot tell the server that we have stopped playing this tabletop game.
/// </summary>
[Serializable, NetSerializable]
public sealed class TabletopStopPlayingEvent : EntityEventArgs
{
/// <summary>
/// The entity UID of the table associated with this tabletop game.
/// </summary>
public NetEntity TableUid;
public TabletopStopPlayingEvent(NetEntity tableUid)
{
TableUid = tableUid;
}
}
}