mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
14 lines
306 B
C#
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; }
|
|
}
|
|
}
|