Npc.cpp
上传用户:garry_shen
上传日期:2015-04-15
资源大小:45647k
文件大小:11k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. // Npc.cpp: implementation of the CNpc class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "..npcNpc.h"
  6. #include "..mapMapInfo.h"
  7. #include "..config.h"
  8. // test
  9. #include "..XmudOS.h"
  10. extern rmfullglobals myglobs;
  11. extern CList <CBaseMap*,CBaseMap*>maplist;
  12. ////////////////////////////////////////////////////
  13. CNpc::CNpc()
  14. {
  15. nDamage = 20;
  16. nQianNeng = 0;
  17. bPlayer = FALSE;
  18. nCon = 20;
  19. nDex = 20;
  20. nEff_force = 0;
  21. nEff_jing = 100;
  22. nEff_jingli = 100;
  23. nEff_qi = 100;
  24. nInt = 20;
  25. nMax_force = 0;
  26. nMax_jing = 100;
  27. nMax_jingli = 100;
  28. nMax_qi = 100;
  29. nStr = 20;
  30. nAsk=0;
  31. nAttitude = 0;
  32. // Robin P
  33. g_HasEvent = 0;
  34. }
  35. CNpc::~CNpc()
  36. {
  37. }
  38. //