This commit is contained in:
aixianling
2025-01-09 17:45:40 +08:00
commit 5c9f1dae4a
3482 changed files with 1146531 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
// #include "StdAfx.h"
// CUpdateMask * CWalkRide::s_pWalkRideMask = NULL;
// VOID CWalkRide::LogicRun( TICKCOUNT nCurrentTime )
// {
// Inherited::LogicRun(nCurrentTime);
// }
// void CWalkRide::InitWalkRideBroadcastMask()
// {
// if (!s_pWalkRideMask)
// {
// s_pWalkRideMask = new CUpdateMask;
// }
// s_pWalkRideMask->SetUpdateMaskFlag(PROP_CREATURE_MOVEONESLOTTIME);
// }
// void CWalkRide::DestroyWalkRideBroadcastMask()
// {
// SafeDelete(s_pWalkRideMask);
// }
// void CWalkRide::InitAi(int nAiId)
// {
// if (nAiId > 0)
// {
// m_moveSystem.SetUseAstar(true); //使用A*
// m_pAI = GetGlobalLogicEngine()->GetAiMgr().CreateAi(nAiId,(CAnimal*)this);
// }
// }