namespace Robust.Shared.GameObjects { /// /// An ages old interface to add extra debug data to the "entfo" server-side command. /// public partial interface IComponentDebug : IComponent { /// /// Returns a debug string to print to the console or otherwise display from debug tools. /// This can contain newlines. /// string GetDebugString(); } }