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

游戏

开发平台:

Visual C++

  1. // (C) Copyright 1996 by Anthony J. Carin.  All Rights Reserved.
  2. #ifndef ATTACH_H
  3. #define ATTACH_H
  4. #include "baseobj.h"
  5. class attachment
  6. {
  7. public:
  8.             attachment(coordinate& offset);
  9. void        setto(view& c);
  10. void        draw();
  11. void        attachto(baseobject *obj)      { m_attachedto = obj; }
  12. void        setxoff(direction& d)          { xoff = d; }
  13. void        setyoff(direction& d)          { yoff = d; }
  14. void        setzoff(direction& d)          { zoff = d; }
  15. private:
  16. baseobject *m_attachedto;
  17. coordinate  m_offset;
  18. direction   xoff;
  19. direction   yoff;
  20. direction   zoff;
  21. };
  22. #endif