Files
Pieter-Jan Briers f0d7fbb6f2 Allow enumeration of monitor video modes.
Basically I kept dumping debugging code for this into Clyde startup to test multi-monitor stuff with GLFW so I guess I'm making it official now.
2021-05-11 20:57:27 +02:00

13 lines
264 B
C#

namespace Robust.Client.Graphics
{
public struct VideoMode
{
public ushort Width;
public ushort Height;
public ushort RefreshRate;
public byte RedBits;
public byte BlueBits;
public byte GreenBits;
}
}