PetHandler.h
上传用户:jxpjxmjjw
上传日期:2009-12-07
资源大小:5877k
文件大小:1k
源码类别:

模拟服务器

开发平台:

Visual C++

  1. //////////////////////////////////////////////////////////////////////
  2. //  Aura Handler
  3. //
  4. //  Addon to SpellHandler handles Auras and Seals
  5. //////////////////////////////////////////////////////////////////////
  6. #ifndef WOWPYTHONSERVER_PETHANDLER_H
  7. #define WOWPYTHONSERVER_PETHANDLER_H
  8. #include "MsgHandler.h"
  9. #include "Spell.h"
  10. #include "UpdateMask.h"
  11. class Unit;
  12. class GameClient;
  13. class DatabaseInterface;
  14. class PetHandler : public MsgHandler
  15. {
  16. public:
  17. PetHandler();
  18. ~PetHandler();
  19. void HandleMsg( wowWData & recv_data, GameClient *pClient );
  20. protected:
  21. };
  22. #endif