2021-08-15 14:03:08 +10:00
|
|
|
using Content.Client.Physics.Controllers;
|
|
|
|
|
using Content.Shared.Friction;
|
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
|
|
|
|
namespace Content.Client.Friction
|
|
|
|
|
{
|
|
|
|
|
public sealed class TileFrictionController : SharedTileFrictionController
|
|
|
|
|
{
|
|
|
|
|
public override void Initialize()
|
|
|
|
|
{
|
|
|
|
|
base.Initialize();
|
2022-01-16 08:48:11 +01:00
|
|
|
Mover = Get<MoverController>();
|
2021-08-15 14:03:08 +10:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|