mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-15 14:52:35 +02:00
17 lines
383 B
C#
17 lines
383 B
C#
namespace Robust.Client.CEF
|
|
{
|
|
public sealed class BrowserWindowCreateParameters
|
|
{
|
|
public int Width { get; set; }
|
|
public int Height { get; set; }
|
|
|
|
public string Url { get; set; } = "about:blank";
|
|
|
|
public BrowserWindowCreateParameters(int width, int height)
|
|
{
|
|
Width = width;
|
|
Height = height;
|
|
}
|
|
}
|
|
}
|