Files
RobustToolbox/Robust.Shared/GameObjects/IComponentDebug.cs
slarticodefast 4747e5a05a Add and update a lot of documentation (#6337)
* Serialization docs

Co-authored-by: Moony <moonheart08@users.noreply.github.com>

* ECS docs

Co-authored-by: Moony <moonheart08@users.noreply.github.com>

* scattered docs

Co-authored-by: Moony <moonheart08@users.noreply.github.com>

* Fixes

---------

Co-authored-by: Moony <moonheart08@users.noreply.github.com>
Co-authored-by: PJB3005 <pieterjan.briers+git@gmail.com>
2025-12-15 20:26:17 +01:00

15 lines
464 B
C#

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