www.gusucode.com > C++人工智能游戏开发的一些实例源代码源码程序 > C++人工智能游戏开发的一些实例源代码源码程序\code\06 General Architectures\04 Christian\characterexec.cpp

    //Download by http://www.NewXing.com

#include "characterexec.h"


CharacterExec::CharacterExec ()
{
    m_owner = NULL;
}

void CharacterExec::init ()
{
    return;
}

bool CharacterExec::start  ()
{
    return false;
}

bool CharacterExec::finish ()
{
}

void CharacterExec::reset ()
{
}

IEOwner * CharacterExec::getOwner ()
{
    return m_owner;
}

const char * getName()
{