16 lines
372 B
C#
16 lines
372 B
C#
using Content.Server.Physics.Controllers;
|
|
using Content.Shared.Friction;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Server.Friction
|
|
{
|
|
public sealed class TileFrictionController : SharedTileFrictionController
|
|
{
|
|
public override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
Mover = Get<MoverController>();
|
|
}
|
|
}
|
|
}
|