[ogs-changes] dist/c++/ogs/creatures Undeads.h,NONE,1.1 Humanoid.h,1.4,1.5 Makefile.am,1.4,1.5 Undea
Status: Alpha
Brought to you by:
elemings
From: <ele...@us...> - 2003-04-15 16:59:16
|
Update of /cvsroot/ogs/dist/c++/ogs/creatures In directory sc8-pr-cvs1:/tmp/cvs-serv20206/c++/ogs/creatures Modified Files: Humanoid.h Makefile.am Undead.h Added Files: Undeads.h Log Message: See C++ ChangeLog (Apr 15) for details. --- NEW FILE: Undeads.h --- /* * Undeads.h -- declarations for undead creatures * Copyright (C) 2003 Eric Lemings <ele...@us...> * * This software is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this software; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA * * RCS: $Id: Undeads.h,v 1.1 2003/04/15 16:58:39 elemings Exp $ */ #ifndef OGS_CREATURES_UNDEADS_H # define OGS_CREATURES_UNDEADS_H // Uncomment these as they are completed. //# include <ogs/creatures/undeads/Ghast.h> //# include <ogs/creatures/undeads/Ghost.h> //# include <ogs/creatures/undeads/Ghoul.h> //# include <ogs/creatures/undeads/Lich.h> //# include <ogs/creatures/undeads/Mummy.h> //# include <ogs/creatures/undeads/Skeleton.h> //# include <ogs/creatures/undeads/Vampire.h> //# include <ogs/creatures/undeads/Wight.h> # include <ogs/creatures/undeads/Wraith.h> //# include <ogs/creatures/undeads/Zombie.h> #endif /* !defined OGS_CREATURES_UNDEADS_H */ Index: Humanoid.h =================================================================== RCS file: /cvsroot/ogs/dist/c++/ogs/creatures/Humanoid.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Humanoid.h 13 Apr 2003 05:25:20 -0000 1.4 --- Humanoid.h 15 Apr 2003 16:58:37 -0000 1.5 *************** *** 64,68 **** * @param abilities Ability scores of creature. * @param size Size of creature. ! * @param body Body of creature. */ inline --- 64,68 ---- * @param abilities Ability scores of creature. * @param size Size of creature. ! * @param parts An array of body part types. */ inline Index: Makefile.am =================================================================== RCS file: /cvsroot/ogs/dist/c++/ogs/creatures/Makefile.am,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Makefile.am 29 Mar 2003 02:10:34 -0000 1.4 --- Makefile.am 15 Apr 2003 16:58:37 -0000 1.5 *************** *** 22,26 **** SUBDIRS = \ ! humanoids pkgincludedir = $(includedir)/ogs/creatures --- 22,27 ---- SUBDIRS = \ ! humanoids \ ! undeads pkgincludedir = $(includedir)/ogs/creatures *************** *** 30,34 **** Humanoids.h \ Namespace.h \ ! Undead.h INCLUDES = \ --- 31,36 ---- Humanoids.h \ Namespace.h \ ! Undead.h \ ! Undeads.h INCLUDES = \ *************** *** 41,48 **** libogs_creatures_la_DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@ libogs_creatures_la_DEPENDENCIES = \ ! humanoids/libogs-humanoids.la libogs_creatures_la_SOURCES = \ Humanoid.cpp libogs_creatures_la_LIBADD = \ ! humanoids/libogs-humanoids.la --- 43,52 ---- libogs_creatures_la_DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@ libogs_creatures_la_DEPENDENCIES = \ ! humanoids/libogs-humanoids.la \ ! undeads/libogs-undeads.la libogs_creatures_la_SOURCES = \ Humanoid.cpp libogs_creatures_la_LIBADD = \ ! humanoids/libogs-humanoids.la \ ! undeads/libogs-undeads.la Index: Undead.h =================================================================== RCS file: /cvsroot/ogs/dist/c++/ogs/creatures/Undead.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Undead.h 13 Apr 2003 05:25:20 -0000 1.3 --- Undead.h 15 Apr 2003 16:58:38 -0000 1.4 *************** *** 64,68 **** * @param abilities Ability scores of creature. * @param size Size of creature. ! * @param body Body of creature. */ inline --- 64,68 ---- * @param abilities Ability scores of creature. * @param size Size of creature. ! * @param parts An array of body part types. */ inline |