2021-02-27 04:12:09 +01:00
|
|
|
|
#nullable enable
|
|
|
|
|
|
using System;
|
2021-02-04 04:16:36 +01:00
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.GameObjects.EntitySystemMessages
|
|
|
|
|
|
{
|
|
|
|
|
|
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;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|