Files
tbd-station-14/Content.Shared/Suspicion/SuspicionMessages.cs
2021-06-09 22:19:39 +02:00

17 lines
368 B
C#

#nullable enable
using System;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization;
namespace Content.Shared.Suspicion
{
public static class SuspicionMessages
{
[Serializable, NetSerializable]
public sealed class SetSuspicionEndTimerMessage : EntityEventArgs
{
public TimeSpan? EndTime;
}
}
}