summaryrefslogtreecommitdiff
path: root/quellcode/demo1/Controller/Main.cs
blob: b07e1edc8ed91468ba189ea1ca15ff908fdda2d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// project created on 12/15/2006 at 11:25 AM
using System;
using Gtk;

namespace Controller
{
	class MainClass
	{
		public static void Main (string[] args)
		{
			Application.Init ();
			MainWindow win = new MainWindow ();
			win.Show ();
			Application.Run ();
		}
	}
}