Delta-v/Content.Shared/GameObjects/Components/Body/IBodyManagerComponent.cs

10 lines
232 B
C#

using Content.Shared.GameObjects.Components.Damage;
using Robust.Shared.Interfaces.GameObjects;
namespace Content.Shared.GameObjects.Components.Body
{
public interface IBodyManagerComponent : IDamageableComponent
{
}
}