18 lines
383 B
C#
18 lines
383 B
C#
namespace Content.Server._CP14.Roof;
|
|
|
|
/// <summary>
|
|
/// When added, marks ALL tiles on grid as rooved
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class CP14SetGridRoovedComponent : Component
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// When added, marks ALL tiles on grid as unrooved
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class CP14SetGridUnroovedComponent : Component
|
|
{
|
|
}
|