Files
tbd-station-14/Content.Server/Interfaces/GameObjects/Components/Movement/IMoverComponent.cs
2019-04-15 21:11:38 -06:00

12 lines
281 B
C#

using Robust.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
{
}
}