* Drag changes * Higlights only show near cursor * Don't highlight un-droppable entities * Fixes invalid highlights issue * Also the scanner * 2 months fix * Address reviews Co-authored-by: Metal Gear Sloth <metalgearsloth@gmail.com>
15 lines
290 B
C#
15 lines
290 B
C#
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Client.State
|
|
{
|
|
public sealed class OutlineToggleMessage : EntitySystemMessage
|
|
{
|
|
public bool Enabled { get; }
|
|
|
|
public OutlineToggleMessage(bool enabled)
|
|
{
|
|
Enabled = enabled;
|
|
}
|
|
}
|
|
}
|