Adonthell
0.4
|
00001 /* 00002 $Id: character.cc,v 1.9 2001/11/02 13:19:34 ksterker Exp $ 00003 00004 Copyright (C) 2000/2001 Kai Sterker <kaisterker@linuxgames.com> 00005 Part of the Adonthell Project http://adonthell.linuxgames.com 00006 00007 This program is free software; you can redistribute it and/or modify 00008 it under the terms of the GNU General Public License. 00009 This program is distributed in the hope that it will be useful, 00010 but WITHOUT ANY WARRANTY. 00011 00012 See the COPYING file for more details. 00013 */ 00014 00015 00016 /** 00017 * @file character.cc 00018 * @author Kai Sterker <kaisterker@linuxgames.com> 00019 * 00020 * @brief Defines the character class. 00021 * 00022 * 00023 */ 00024 00025 #include "character.h" 00026 00027 dictionary <character *> data::characters; 00028 character * data::the_player = NULL; 00029 00030 character::character() : mapcharacter () 00031 { 00032 } 00033 00034 character::~character() 00035 { 00036 }