IMapObject.cs 357 B

1234567891011121314
  1. namespace Content.Shared.Shuttles.UI.MapObjects;
  2. /// <summary>
  3. /// Abstract map object representing a grid, beacon etc for use on the map screen.
  4. /// </summary>
  5. public interface IMapObject
  6. {
  7. string Name { get; }
  8. /// <summary>
  9. /// Should we hide the button from being shown (AKA just draw it).
  10. /// </summary>
  11. bool HideButton { get; }
  12. }