repo.or.cz
/
circ.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* Corrected small things to make Circ-git compile from within MonoDevelop
[circ.git]
/
Circ.Frontend.GtkSharp
/
Main.cs
blob
73ca5677ed395c911858124dbb1cb4ad064baa89
1
// project created on 13/03/2007 at 18:52
2
using
System
;
3
using
Gtk
;
4
5
namespace
Circ
.
Backend
.
GtkSharp
6
{
7
class
MainClass
8
{
9
public static void
Main
(
string
[]
args
)
10
{
11
Application
.
Init
();
12
MainWindow win
=
new
MainWindow
();
13
win
.
Show
();
14
Application
.
Run
();
15
}
16
}
17
}