Files
OldThink/Content.Client/GameObjects/Components/Pulling/PullableComponent.cs

12 lines
305 B
C#
Raw Normal View History

using Content.Shared.GameObjects.Components.Pulling;
using Robust.Shared.GameObjects;
namespace Content.Client.GameObjects.Components.Pulling
{
[RegisterComponent]
[ComponentReference(typeof(SharedPullableComponent))]
public class PullableComponent : SharedPullableComponent
{
}
}