ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/gde/gce
Revision: 1.3
Committed: Sun Feb 5 04:30:17 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.2: +4 -1 lines
Log Message:
*** empty log message ***

File Contents

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