mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
## Mirror of PR #25897: [Shuttle map IFF tweaks](https://github.com/space-wizards/space-station-14/pull/25897) from <img src="https://avatars.githubusercontent.com/u/10567778?v=4" alt="space-wizards" width="22"/> [space-wizards](https://github.com/space-wizards)/[space-station-14](https://github.com/space-wizards/space-station-14) ###### `a41772a006302bbe267793569b4b0d171eb82c87` PR opened by <img src="https://avatars.githubusercontent.com/u/31366439?v=4" width="16"/><a href="https://github.com/metalgearsloth"> metalgearsloth</a> at 2024-03-07 02:06:24 UTC PR merged by <img src="https://avatars.githubusercontent.com/u/19864447?v=4" width="16"/><a href="https://github.com/web-flow"> web-flow</a> at 2024-03-11 02:11:46 UTC --- PR changed 7 files with 32 additions and 9 deletions. The PR had the following labels: - Changes: UI --- <details open="true"><summary><h1>Original Body</h1></summary> > - HideLabel just means it won't have its name / button drawn whereas Hide will block it completely. > >  > > 🆑 > - tweak: Remove the buttons for generated debris from shuttle maps. > </details> Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
15 lines
357 B
C#
15 lines
357 B
C#
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; }
|
|
|
|
/// <summary>
|
|
/// Should we hide the button from being shown (AKA just draw it).
|
|
/// </summary>
|
|
bool HideButton { get; }
|
|
}
|