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

14 lines
328 B
C#

#nullable enable
using Robust.Shared.Interfaces.GameObjects;
namespace Content.Shared.GameObjects.Components.Body
{
public interface IHasBody : IComponent
{
/// <summary>
/// The body that this component is currently a part of, if any.
/// </summary>
IBody? Body { get; }
}
}