Delta-v/Content.Shared/Shuttles/UI/MapObjects/GridMapObject.cs

8 lines
168 B
C#

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