Files
crystall-punk-14/Content.Shared/_CP14/Roof/CP14RoofComponent.cs
Ed 576bbe91d0 Roofs (#657)
* simple roo system

* tweaks

* roof sprite update

* transparent roof

* wooden roof sprite

* remove weather: false from all tiles

* stone roof + roofs crafting

* final shtrix, maps update

* fuck

* fix checks

* reagent auto vaporize tweaks

* Update base.yml
2024-12-11 14:44:16 +03:00

16 lines
379 B
C#

using Content.Shared.Actions;
namespace Content.Shared._CP14.Roof;
/// <summary>
/// Marks an entity as a roof, allowing you to hide all roofs or show them back depending on different situations
/// </summary>
[RegisterComponent]
public sealed partial class CP14RoofComponent : Component
{
}
public sealed partial class CP14ToggleRoofVisibilityAction : InstantActionEvent
{
}