namespace Robust.Client.Debugging
{
///
/// A collection of visual debug overlays for the client game.
///
public interface IDebugDrawing
{
///
/// Toggles the visual overlay of the local origin for each entity on screen.
///
bool DebugPositions { get; set; }
}
}