mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-02 18:17:09 +02:00
Fixes unit tests. Made ray color change if successful hit. Made ray length based on actual ray results.
17 lines
367 B
C#
17 lines
367 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Robust.Shared.Timing;
|
|
|
|
namespace Robust.Client.Interfaces.Debugging
|
|
{
|
|
public interface IDebugDrawingManager
|
|
{
|
|
bool DebugDrawRays { get; set; }
|
|
TimeSpan DebugRayLifetime { get; set; }
|
|
void Initialize();
|
|
}
|
|
}
|