2021-01-11 22:14:01 +11:00
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Client.State
|
|
|
|
|
|
{
|
2021-03-09 11:22:48 -08:00
|
|
|
|
public sealed class OutlineToggleMessage : EntityEventArgs
|
2021-01-11 22:14:01 +11:00
|
|
|
|
{
|
|
|
|
|
|
public bool Enabled { get; }
|
|
|
|
|
|
|
|
|
|
|
|
public OutlineToggleMessage(bool enabled)
|
|
|
|
|
|
{
|
|
|
|
|
|
Enabled = enabled;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|