ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/bin/deliantra
Revision: 1.122
Committed: Thu Dec 29 07:13:44 2011 UTC (12 years, 4 months ago) by root
Branch: MAIN
Changes since 1.121: +3 -101 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #!/opt/bin/perl
2
3 #############################################################################
4 # prepend private library directory
5 for (grep !ref, @INC) {
6 my $path = "$_/Deliantra/Client/private";
7 if (-d $path) {
8 unshift @INC, $path;
9 last;
10 }
11 }
12
13 #############################################################################
14 # load and run the main program
15
16 require DC::Main;
17
18 DC::Main::run ();
19
20 1; # this file is require'd in the binary client package
21
22 =head1 NAME
23
24 deliantra - A Deliantra MORPG game client
25
26 =head1 SYNOPSIS
27
28 deliantra [--profile name] [host [user [password]]]
29 deliantra --help
30
31 =head1 USAGE
32
33 The deliantra client utilises OpenGL for all UI elements and the game. It
34 is supposed to be used in fullscreen mode and interactively.
35
36 =head1 DEBUGGING
37
38 DELIANTRA_DEBUG - environment variable
39
40 1 draw borders around widgets
41 2 add low-level widget info to tooltips
42 4 show fps
43 8 suppress tooltips
44 16 show bandwidth downstream
45
46 =head1 AUTHOR
47
48 Marc Lehmann <deliantra@schmorp.de>, Robin Redeker <elmex@ta-sa.org>
49
50
51