Start on an Avalonia Ui.

This commit is contained in:
2026-01-15 07:31:18 +01:00
committed by Dennis Brentjes
parent 88f8cf76ef
commit 7f8cd83eb9
45 changed files with 2523 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using UIKit;
namespace gamenight.ui.iOS;
public class Application
{
// This is the main entry point of the application.
static void Main(string[] args)
{
// if you want to use a different Application Delegate class from "AppDelegate"
// you can specify it here.
UIApplication.Main(args, null, typeof(AppDelegate));
}
}