mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
22 lines
369 B
C#
22 lines
369 B
C#
using System;
|
|
using Uno.UI.Hosting;
|
|
|
|
namespace Marechai.App;
|
|
|
|
internal class Program
|
|
{
|
|
[STAThread]
|
|
public static void Main(string[] args)
|
|
{
|
|
var host = UnoPlatformHostBuilder.Create()
|
|
.App(() => new App())
|
|
.UseX11()
|
|
.UseLinuxFrameBuffer()
|
|
.UseMacOS()
|
|
.UseWin32()
|
|
.Build();
|
|
|
|
host.Run();
|
|
}
|
|
}
|