- HideLabel just means it won't have its name / button drawn whereas Hide will block it completely.
9 lines
210 B
C#
9 lines
210 B
C#
namespace Content.Shared.Shuttles.UI.MapObjects;
|
|
|
|
public record struct GridMapObject : IMapObject
|
|
{
|
|
public string Name { get; set; }
|
|
public bool HideButton { get; init; }
|
|
public EntityUid Entity;
|
|
}
|