Files
RobustToolbox/Robust.Client/Interfaces/Graphics/IClydeDebugInfo.cs
T

14 lines
295 B
C#

using System;
namespace Robust.Client.Interfaces.Graphics
{
internal interface IClydeDebugInfo
{
Version OpenGLVersion { get; }
Version MinimumVersion { get; }
string Renderer { get; }
string Vendor { get; }
string VersionString { get; }
}
}