mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
* 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>
15 lines
464 B
C#
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();
|
|
}
|
|
}
|