mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 09:37:03 +02:00
14 lines
337 B
C#
14 lines
337 B
C#
namespace Robust.Client.Graphics
|
|
{
|
|
public sealed class WindowCreateParameters
|
|
{
|
|
public int Width = 1280;
|
|
public int Height = 720;
|
|
public string Title = "";
|
|
public bool Maximized;
|
|
public bool Visible = true;
|
|
public IClydeMonitor? Monitor;
|
|
public bool Fullscreen;
|
|
}
|
|
}
|