Move movement to client.

This commit is contained in:
Pieter-Jan Briers
2019-04-04 16:18:43 +02:00
parent b8e7ae925f
commit 0fe1407214
11 changed files with 406 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
using SS14.Shared.Interfaces.GameObjects;
namespace Content.Server.Interfaces.GameObjects.Components.Movement
{
// Does nothing except ensure uniqueness between mover components.
// There can only be one.
public interface IMoverComponent : IComponent
{
}
}