[Gcblue-commits] gcb_wx/src/graphics tcGameView.cpp,1.3,1.4
Status: Alpha
Brought to you by:
ddcforge
|
From: Dewitt C. <ddc...@us...> - 2005-02-20 18:20:30
|
Update of /cvsroot/gcblue/gcb_wx/src/graphics In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23561/src/graphics Modified Files: tcGameView.cpp Log Message: Parallel ai update Index: tcGameView.cpp =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/src/graphics/tcGameView.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** tcGameView.cpp 2 Nov 2004 04:23:56 -0000 1.3 --- tcGameView.cpp 20 Feb 2005 18:20:19 -0000 1.4 *************** *** 37,40 **** --- 37,41 ---- #include "tcObjectControl.h" // to pass range circle, etc. symbols to map #include "tcMissileObject.h" + #include "ai/Brain.h" #ifdef _DEBUG *************** *** 481,485 **** if (pPlatformObj != NULL) { ! tnPoolIndex nTarget = pPlatformObj->mcAI.GetTarget(); if (nTarget != NULL_INDEX) { --- 482,486 ---- if (pPlatformObj != NULL) { ! tnPoolIndex nTarget = pPlatformObj->GetBrain()->GetTarget(); if (nTarget != NULL_INDEX) { |