* IFF console * Silly * Color * a * Const bool default * Full stealth as well coz dork. * Infiltrator update
13 lines
295 B
C#
13 lines
295 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Shuttles.Events;
|
|
|
|
/// <summary>
|
|
/// Raised on a client IFF console when it wishes to show IFF.
|
|
/// </summary>
|
|
[Serializable, NetSerializable]
|
|
public sealed class IFFShowIFFMessage : BoundUserInterfaceMessage
|
|
{
|
|
public bool Show;
|
|
}
|