[ogs-changes] dist/c++/ogs/creatures Humanoid.cpp,1.3,1.4 Humanoid.h,1.2,1.3 Makefile.am,1.3,1.4 Hum
Status: Alpha
Brought to you by:
elemings
|
From: <ele...@us...> - 2003-03-29 02:11:09
|
Update of /cvsroot/ogs/dist/c++/ogs/creatures
In directory sc8-pr-cvs1:/tmp/cvs-serv24985/creatures
Modified Files:
Humanoid.h Makefile.am
Added Files:
Humanoid.cpp
Removed Files:
Human.cpp Human.h
Log Message:
See C++ ChangeLog (Mar 28) for details.
Index: Humanoid.h
===================================================================
RCS file: /cvsroot/ogs/dist/c++/ogs/creatures/Humanoid.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Humanoid.h 5 Feb 2003 06:01:28 -0000 1.2
--- Humanoid.h 29 Mar 2003 02:10:34 -0000 1.3
***************
*** 1,4 ****
/*
! * Humanoid.h -- class interface for humanoids
* Copyright (C) 2002 Eric Lemings <ele...@us...>
*
--- 1,4 ----
/*
! * Humanoid.h -- class interface for humanoid creatures
* Copyright (C) 2002 Eric Lemings <ele...@us...>
*
***************
*** 23,28 ****
#ifdef __cplusplus
! # ifndef OGS_HUMANOID_H
! # define OGS_HUMANOID_H
# include <ogs/core/Creature.h>
--- 23,28 ----
#ifdef __cplusplus
! # ifndef OGS_CREATURES_HUMANOID_H
! # define OGS_CREATURES_HUMANOID_H
# include <ogs/core/Creature.h>
***************
*** 32,47 ****
/**
! * A creature with human-like shape.
*/
class Humanoid: public ogs::core::Creature {
! protected:
!
! private:
};
OGS_END_CREATURES_NAMESPACE
! # endif /* !defined OGS_HUMANOID_H */
#endif /* defined __cplusplus */
--- 32,48 ----
/**
! * A creature with qualities similar to a human.
*/
class Humanoid: public ogs::core::Creature {
! public:
! static Body createBody (Creature& creature);
+ protected:
+ Humanoid ();
};
OGS_END_CREATURES_NAMESPACE
! # endif /* !defined OGS_CREATURES_HUMANOID_H */
#endif /* defined __cplusplus */
Index: Makefile.am
===================================================================
RCS file: /cvsroot/ogs/dist/c++/ogs/creatures/Makefile.am,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Makefile.am 23 Mar 2003 22:14:36 -0000 1.3
--- Makefile.am 29 Mar 2003 02:10:34 -0000 1.4
***************
*** 40,43 ****
localedir = $(datadir)/locale
libogs_creatures_la_DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
! libogs_creatures_la_SOURCES =
--- 40,48 ----
localedir = $(datadir)/locale
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
--- Human.cpp DELETED ---
--- Human.h DELETED ---
|