2021-07-17 02:37:09 +02:00
|
|
|
|
using System;
|
2021-02-04 04:16:36 +01:00
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
|
namespace Content.Shared.Suspicion
|
2021-02-04 04:16:36 +01:00
|
|
|
|
{
|
|
|
|
|
|
public static class SuspicionMessages
|
|
|
|
|
|
{
|
|
|
|
|
|
[Serializable, NetSerializable]
|
2021-03-09 11:22:48 -08:00
|
|
|
|
public sealed class SetSuspicionEndTimerMessage : EntityEventArgs
|
2021-02-04 04:16:36 +01:00
|
|
|
|
{
|
|
|
|
|
|
public TimeSpan? EndTime;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|