8 lines
168 B
C#
8 lines
168 B
C#
|
|
namespace Content.Shared.Shuttles.UI.MapObjects;
|
||
|
|
|
||
|
|
public record struct GridMapObject : IMapObject
|
||
|
|
{
|
||
|
|
public string Name { get; set; }
|
||
|
|
public EntityUid Entity;
|
||
|
|
}
|