Files
OldThink/Content.Shared/Shuttles/UI/MapObjects/GridMapObject.cs

9 lines
210 B
C#
Raw Normal View History

namespace Content.Shared.Shuttles.UI.MapObjects;
public record struct GridMapObject : IMapObject
{
public string Name { get; set; }
public bool HideButton { get; init; }
public EntityUid Entity;
}