GridMapObject.cs 210 B

12345678
  1. namespace Content.Shared.Shuttles.UI.MapObjects;
  2. public record struct GridMapObject : IMapObject
  3. {
  4. public string Name { get; set; }
  5. public bool HideButton { get; init; }
  6. public EntityUid Entity;
  7. }