ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/gde/gce
Revision: 1.11
Committed: Wed Feb 8 16:46:16 2006 UTC (18 years, 3 months ago) by elmex
Branch: MAIN
Changes since 1.10: +0 -7 lines
Log Message:
reworked/restructured the code a little bit

File Contents

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