mirror of
				https://github.com/Nioux/AideDeJeu.git
				synced 2025-10-30 23:16:09 +00:00 
			
		
		
		
	
		
			
	
	
		
			29 lines
		
	
	
	
		
			623 B
		
	
	
	
		
			C#
		
	
	
	
	
	
		
		
			
		
	
	
			29 lines
		
	
	
	
		
			623 B
		
	
	
	
		
			C#
		
	
	
	
	
	
|   | using System; | |||
|  | using System.Collections.Generic; | |||
|  | using System.Linq; | |||
|  | using System.Text; | |||
|  | using System.Threading.Tasks; | |||
|  | using Xamarin.Forms; | |||
|  | using Xamarin.Forms.Platform.GTK; | |||
|  | 
 | |||
|  | namespace AideDeJeu.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("Haches & Dés"); | |||
|  |             window.Show(); | |||
|  | 
 | |||
|  |             Gtk.Application.Run(); | |||
|  |         } | |||
|  |     } | |||
|  | } |