Statistiques
| Branche: | Révision:

root / GES_PAC / Platforms / Android / MainApplication.cs @ 42456640

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

1 65ad7e66 Lucas Bihannic
using Android.App;
2
using Android.Runtime;
3
4
namespace GES_PAC;
5
6
[Application]
7
public class MainApplication : MauiApplication
8
{
9
	public MainApplication(IntPtr handle, JniHandleOwnership ownership)
10
		: base(handle, ownership)
11
	{
12
	}
13
14
	protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
15
}