10 lines
232 B
C#
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
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|