WEAPHOLD.H
上传用户:abcdshs
上传日期:2007-01-07
资源大小:1858k
文件大小:0k
源码类别:

游戏

开发平台:

Visual C++

  1. // (C) Copyright 1996 by Anthony J. Carin.  All Rights Reserved.
  2. #ifndef WEAPHOLD_H
  3. #define WEAPHOLD_H
  4. #include <landscpe.h>
  5. enum WeaponType
  6. {
  7.        SWORD  = 0,
  8.        KNIFE  = 1,
  9.        SHIELD = 2
  10. };
  11. class weaponholder : public landscape
  12. {
  13. public:
  14. weaponholder(WeaponType type);
  15.     short NumType()     { return (short) m_hhtype; }
  16. private:
  17.     WeaponType m_hhtype;
  18. };
  19. #endif