Statistiques
| Branche: | Révision:

root / GES_PAC / Platforms / Tizen / Main.cs @ fff89fc5

Historique | Voir | Annoter | Télécharger (283 octets)

1 65ad7e66 Lucas Bihannic
using System;
2
using Microsoft.Maui;
3
using Microsoft.Maui.Hosting;
4
5
namespace GES_PAC;
6
7
class Program : MauiApplication
8
{
9
	protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
10
11
	static void Main(string[] args)
12
	{
13
		var app = new Program();
14
		app.Run(args);
15
	}
16
}