12 lines
307 B
C#
12 lines
307 B
C#
using Content.Shared.GameObjects.Components.Movement;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Client.GameObjects.Components.Movement
|
|
{
|
|
[RegisterComponent]
|
|
[ComponentReference(typeof(SharedSlipperyComponent))]
|
|
public class SlipperyComponent : SharedSlipperyComponent
|
|
{
|
|
}
|
|
}
|