mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-15 03:10:55 +01:00
- 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;
|
|
}
|