mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 17:47:24 +02:00
23 lines
567 B
C#
23 lines
567 B
C#
using System.Collections.Generic;
|
|
using Robust.Shared.Maths;
|
|
|
|
namespace Robust.Client.Graphics
|
|
{
|
|
/// <summary>
|
|
/// Represents a connected monitor on the user's system.
|
|
/// </summary>
|
|
[NotContentImplementable]
|
|
public interface IClydeMonitor
|
|
{
|
|
/// <summary>
|
|
/// This ID is not consistent between startups of the game.
|
|
/// </summary>
|
|
int Id { get; }
|
|
string Name { get; }
|
|
Vector2i Size { get; }
|
|
int RefreshRate { get; }
|
|
|
|
IEnumerable<VideoMode> VideoModes { get; }
|
|
}
|
|
}
|