RGOBJECT.H
上传用户:sycq158
上传日期:2008-10-22
资源大小:15361k
文件大小:1k
源码类别:

游戏

开发平台:

Visual C++

  1. #ifndef _PWFGOBJ_
  2. #define _PWFGOBJ_
  3. #include <stddef.h>
  4. #include "types.h"
  5. #include "gobjects.h"
  6. class RCastGobject : public gobject {
  7.    public:
  8.      RCastGobject(UCHAR imagenum = 1) : gobject(imagenum)
  9.      {};
  10.      PUCHAR Image(UCHAR imagenum = 0){return image[imagenum];};
  11.      USHORT Width() { return width; };
  12.      USHORT Height() { return height; };
  13.      VOID SetImage(PUCHAR imageptr, UCHAR imagenum = 0) {image[imagenum]=imageptr;};
  14.      LONG load(UCHAR imagenum = 0) {
  15.         LONG q=gobject::load(imagenum);
  16.         if (inpcxfile.is_open())
  17.            inpcxfile.close();
  18.         return q;};
  19.      ~RCastGobject() {
  20.      };
  21. };
  22. #endif