Files
tbd-station-14/Content.Client/Rotatable/RotatableComponent.cs
2021-06-09 22:19:39 +02:00

13 lines
280 B
C#

#nullable enable
using Content.Shared.Rotatable;
using Robust.Shared.GameObjects;
namespace Content.Client.Rotatable
{
[RegisterComponent]
[ComponentReference(typeof(SharedRotatableComponent))]
public class RotatableComponent : SharedRotatableComponent
{
}
}