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