ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/gde/gce
Revision: 1.1
Committed: Sun Feb 5 00:34:36 2006 UTC (18 years, 3 months ago) by elmex
Branch: MAIN
Log Message:
first checkin of skeleton

File Contents

# User Rev Content
1 elmex 1.1 #!/opt/bin/perl
2     =head1 NAME
3    
4     gce - gtk (perl) crossfire editor
5    
6     =cut
7    
8     use Gtk2 -init;
9    
10     my $VARDIR = "$ENV{HOME}/.gcfedit";
11    
12     use GCE::MainWindow;
13     my $w = GCE::MainWindow->new;
14    
15     $w->show_all;
16    
17     Gtk2->main;
18    
19     =head1 AUTHOR
20    
21     Marc Lehmann <schmorp@schmorp.de>
22     http://home.schmorp.de/
23    
24     Robin Redeker <elmex@ta-sa.org>
25     http://www.ta-sa.org/
26    
27     =cut