Add basalt tiles (#13462)

This commit is contained in:
metalgearsloth
2023-01-18 05:28:37 +11:00
committed by GitHub
parent c8940cefb3
commit e090cd393b
23 changed files with 308 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
using Robust.Shared.GameStates;
namespace Content.Shared.Tiles;
/// <summary>
/// Deletes the entity if the tile changes from under it. Used for visual effects.
/// </summary>
[RegisterComponent, NetworkedComponent]
public sealed class RequiresTileComponent : Component
{
}