mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-03 02:27:08 +02:00
14 lines
295 B
C#
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; }
|
|
}
|
|
} |