Files
crystall-punk-14/Content.Shared/GameObjects/Components/SharedPlaceableSurfaceComponent.cs

10 lines
227 B
C#
Raw Normal View History

using Robust.Shared.GameObjects;
namespace Content.Shared.GameObjects.Components
{
public abstract class SharedPlaceableSurfaceComponent : Component
{
public override string Name => "PlaceableSurface";
}
}