Files
RobustToolbox/Robust.Client/Graphics/IClydeDebugInfo.cs
2022-12-03 00:27:56 +01:00

14 lines
306 B
C#

namespace Robust.Client.Graphics
{
internal interface IClydeDebugInfo
{
OpenGLVersion OpenGLVersion { get; }
string Renderer { get; }
string Vendor { get; }
string VersionString { get; }
bool Overriding { get; }
string WindowingApi { get; }
}
}