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

10 lines
219 B
C#
Raw Normal View History

namespace Content.Shared.Shuttles.UI.MapObjects;
/// <summary>
/// Abstract map object representing a grid, beacon etc for use on the map screen.
/// </summary>
public interface IMapObject
{
string Name { get; }
}