diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-04-16 12:46:23 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-04-16 12:46:23 +0000 |
commit | c81af7dec962c5d96d116670a3c06faf586b2326 (patch) | |
tree | 0f6024e131dc8f7185fc10ba9108de695598f4b4 /links.php | |
download | website-c81af7dec962c5d96d116670a3c06faf586b2326.tar.gz website-c81af7dec962c5d96d116670a3c06faf586b2326.tar.bz2 website-c81af7dec962c5d96d116670a3c06faf586b2326.tar.xz website-c81af7dec962c5d96d116670a3c06faf586b2326.zip |
Committing website so far to CVS
Diffstat (limited to 'links.php')
-rw-r--r-- | links.php | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/links.php b/links.php new file mode 100644 index 0000000..c224fe1 --- /dev/null +++ b/links.php @@ -0,0 +1,44 @@ +<?php + include("includes/common.php"); + placeHeader("Links"); +?> + +<h3>Developer resources</h3> + +<ul> +<li><a href="http://www.lindeijer.nl/flyspray/">Flyspray task tracking system</a></li> +<li><a href="http://themanaworld.org/tmwdox/">Doxygen source documentation</a></li> +<li><a href="http://themanaworld.org/statcvs/">CVS statistics</a></li> +<li><a href="http://www.sourceforge.net/projects/themanaworld/">SouceForge project page</a></li> +<li><a href="http://lists.sourceforge.net/lists/listinfo/themanaworld-commit">CVSspam commit mailing list</a></li> +</ul> + +<h3>Dependencies</h3> + +<ul> +<li><a href="http://www.libsdl.org/">SDL</a> - Simple directmedia layer</li> +<li><a href="http://www.libsdl.org/projects/SDL_image/">SDL_image</a> - Image loading library</li> +<li><a href="http://www.libsdl.org/projects/SDL_mixer/">SDL_mixer</a> - Sound playback library</li> +<li><a href="http://guichan.sourceforge.net/">Guichan</a> - GUI library</li> +<li><a href="http://xmlsoft.org/">Libxml2</a> - XML parsing library</li> +<li><a href="http://icculus.org/physfs/">PhysicsFS</a> - Archive filesystem library</li> +</ul> + +<h3>Localized websites</h3> + +<ul> +<li><a href="http://themanaworld.cjb.net/">Brazil support page</a></li> +</ul> + +<h3>Other related links</h3> + +<ul> +<li><a href="http://tiled.rpgdx.net/">Tiled</a> - Tiled map editor</li> +<li><a href="http://eathena.deltaanime.net/">eAthena server</a> - Ragnarok Online Server Emulator</li> +<li><a href="http://rpgdx.net">RPGDX</a> - RPG development community website</li> +<li><a href="http://digilander.libero.it/eugeniofavalli">Final RPG</a> - Elven's Final RPG project</li> +</ul> + +<?php + placeFooter(); +?> |