Files
UltimateFishing/Assets/Scripts/Assembly-CSharp/SRDebugger/Services/IProfilerService.cs
2026-02-21 16:45:37 +08:00

14 lines
218 B
C#

using CircularBuffer;
namespace SRDebugger.Services
{
public interface IProfilerService
{
float AverageFrameTime { get; }
float LastFrameTime { get; }
CircularBuffer<ProfilerFrame> FrameBuffer { get; }
}
}