Delta-v/Content.Shared/GameWindow/RequestWindowAttentionEvent.cs

13 lines
261 B
C#

#nullable enable
using System;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization;
namespace Content.Shared.GameWindow
{
[Serializable, NetSerializable]
public sealed class RequestWindowAttentionEvent : EntityEventArgs
{
}
}