Partially Fixes #2975 - Upgrades UICatalog to Menuv2 (#4011)

This commit is contained in:
Tig
2025-04-02 06:27:24 -06:00
committed by GitHub
parent 4cc44091f2
commit 7ba9e539ed
31 changed files with 6467 additions and 5216 deletions

View File

@@ -0,0 +1,18 @@
#nullable enable
namespace UICatalog;
public struct UICatalogCommandLineOptions
{
public string Driver { get; set; }
public string Scenario { get; set; }
public uint BenchmarkTimeout { get; set; }
public bool Benchmark { get; set; }
public string ResultsFile { get; set; }
public string DebugLogLevel { get; set; }
/* etc. */
}