mirror of
https://github.com/WowUp/WowUp.git
synced 2026-04-25 08:19:46 -04:00
25 lines
521 B
C#
25 lines
521 B
C#
using System;
|
|
using Xamarin.Forms;
|
|
using Xamarin.Forms.Platform.GTK;
|
|
|
|
namespace WowUp.GTK
|
|
{
|
|
public class Program
|
|
{
|
|
[STAThread]
|
|
public static void Main(string[] args)
|
|
{
|
|
Gtk.Application.Init();
|
|
Forms.Init();
|
|
|
|
var app = new App();
|
|
var window = new FormsWindow();
|
|
window.LoadApplication(app);
|
|
window.SetApplicationTitle("Game of Life");
|
|
window.Show();
|
|
|
|
Gtk.Application.Run();
|
|
}
|
|
}
|
|
}
|