Update of /cvsroot/wpdev/wolfpack/python
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25066/python
Modified Files:
pyai.cpp
Log Message:
Last object type documented!
Index: pyai.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/python/pyai.cpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** pyai.cpp 15 Jun 2004 02:44:46 -0000 1.6
--- pyai.cpp 1 Jul 2004 21:36:29 -0000 1.7
***************
*** 38,43 ****
#include "objectcache.h"
! /*!
! The object for Wolfpack Python items
*/
struct wpAI
--- 38,44 ----
#include "objectcache.h"
! /*
! \object ai
! \description This object type represents the ai assigned to a npc.
*/
struct wpAI
***************
*** 88,93 ****
}
! // Method declarations
!
static PyObject* wpAI_onSpeechInput( wpAI* self, PyObject* args )
{
--- 89,99 ----
}
! /*
! \method ai.onSpeechInput
! \param from A <object id="char">char</object> object for the character the text is coming from.
! \param text A string with the text that should be processed.
! \description This method sends a text with a given source to the ai engine to proces it. This
! could be used to force the banker engine to open the bankbox for instance.
! */
static PyObject* wpAI_onSpeechInput( wpAI* self, PyObject* args )
{
|