DDLayer.h
资源名称:DXGuide.zip [点击查看]
上传用户:wymy58
上传日期:2007-01-07
资源大小:2086k
文件大小:1k
源码类别:
DirextX编程
开发平台:
Visual C++
- // Copyright (C) 1998-1999 DXGuide. All Rights Reserved.
- // File: DDLayer.h
- #ifndef _DDLAYER__H
- #define _DDLAYER__H
- #if _MSC_VER >= 1000
- #pragma once
- #endif // _MSC_VER >= 1000
- #include "DDDIBSurface.h"
- class CDDLayer : public CDDDIBSurface
- {
- public:
- CDDLayer(void);
- virtual ~CDDLayer();
- public:
- void ScrollUp(int nOffset);
- void ScrollDown(int nOffset);
- void ScrollLeft(int nOffset);
- void ScrollRight(int nOffset);
- void MoveTo(int nXOffset, int nYOffset);
- HRESULT Draw(CDDSurface* lpDDS);
- protected:
- int m_nXOffset;
- int m_nYOffset;
- };
- #include "DDLayer.inl"
- #endif // _DDLAYER__H