forked from amkovkov/GranuSightSoftware2
feat: fullscreen argument
This commit is contained in:
@@ -17,12 +17,15 @@ namespace GSS2.Test;
|
||||
public partial class Program
|
||||
{
|
||||
public static IHost ApplicationHost { get; } = BuildHostApp();
|
||||
public static bool IsFullscreen = false;
|
||||
|
||||
private static void Ui(ParseResult parseResult)
|
||||
{
|
||||
var builder = BuildAvaloniaApp();
|
||||
var renderingMode = parseResult.GetValue(_renderingModeArgument);
|
||||
var hideConsole = parseResult.GetValue(_hideConsoleArgument);
|
||||
var renderingMode = parseResult.GetValue(_renderingMode);
|
||||
var hideConsole = parseResult.GetValue(_hideConsole);
|
||||
var fullscreen = parseResult.GetValue(_fullscreen);
|
||||
IsFullscreen = fullscreen;
|
||||
|
||||
if (hideConsole)
|
||||
SilenceConsole();
|
||||
|
||||
Reference in New Issue
Block a user