mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-13 07:11:56 +01:00
25 lines
535 B
C#
25 lines
535 B
C#
using Borepin;
|
|
using System;
|
|
using Xamarin.Forms;
|
|
using Xamarin.Forms.Platform.GTK;
|
|
|
|
namespace GameOfLife.GTK
|
|
{
|
|
class MainClass
|
|
{
|
|
[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();
|
|
}
|
|
}
|
|
} |