Files
crystall-punk-14/Content.Shared/Shuttles/UI/MapObjects/GridMapObject.cs

8 lines
168 B
C#
Raw Normal View History

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