|
From: Audoux <au...@us...> - 2001-01-02 23:23:09
|
Update of /cvsroot/attal/src/common
In directory usw-pr-cvs1:/tmp/cvs-serv30692
Modified Files:
genericBuilding.h genericBuilding.cpp
Log Message:
nothing new (for the moment...)
Index: genericBuilding.h
===================================================================
RCS file: /cvsroot/attal/src/common/genericBuilding.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** genericBuilding.h 2001/01/02 19:21:01 1.10
--- genericBuilding.h 2001/01/02 23:23:05 1.11
***************
*** 191,195 ****
bool load( QTextStream * );
! void enter() { logII("You are in a gold mine"); }
int collectGold() { return _gold; }
--- 191,195 ----
bool load( QTextStream * );
! void enter();
int collectGold() { return _gold; }
Index: genericBuilding.cpp
===================================================================
RCS file: /cvsroot/attal/src/common/genericBuilding.cpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** genericBuilding.cpp 2001/01/02 19:21:01 1.7
--- genericBuilding.cpp 2001/01/02 23:23:05 1.8
***************
*** 124,125 ****
--- 124,130 ----
{
}
+
+ void GenericMine::enter()
+ {
+ logDD("You are in a Mine" );
+ }
|