Files
tbd-station-14/Content.Server/Interfaces/GameObjects/Components/Movement/IMoverComponent.cs
2019-04-04 16:18:43 +02:00

12 lines
279 B
C#

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
{
}
}