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

游戏

开发平台:

Visual C++

  1. // (C) Copyright 1996 by Anthony J. Carin.  All Rights Reserved.
  2. #ifndef GATEWAY_H
  3. #define GATEWAY_H
  4. #include <landscpe.h>
  5. #include <bmpsurf.h>
  6. class gateway : public landscape
  7. {
  8. public:
  9. gateway(CString& mapname);
  10. CString&    mapfile() { return ToMap; }
  11. void        draw();
  12. private:
  13. CString ToMap;
  14. bmpsurf *mGate;
  15. };
  16. #endif