?? background.h
字號:
// LoginProcess.h: interface for the CBackGroundProcess class.
//
//////////////////////////////////////////////////////////////////////
#ifndef _BACK_GROUND_H
#define _BACK_GROUND_H
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CBackGround : public CBMWnd
{
/////////////////////////////////////////////////////////////////////////////////////////
// Functions
public:
CBackGround();
~CBackGround();
virtual VOID Create(CWHWilImageData* pxImage);
VOID SetRenderState(INT nState);
INT GetRenderState(VOID);
VOID AllStopAvi(VOID);
virtual HRESULT OnButtonDown(WPARAM wParam, LPARAM lParam);
virtual HRESULT OnButtonDown(POINT ptMouse);
virtual HRESULT OnButtonUp(WPARAM wParam, LPARAM lParam);
virtual HRESULT OnButtonUp(POINT ptMouse);
virtual HRESULT OnKeyDown(WPARAM wParam, LPARAM lParam);
virtual LRESULT OnMouseMove(WPARAM wParam, LPARAM lParam);
virtual VOID Render(INT nLoopTime);
private:
protected:
/////////////////////////////////////////////////////////////////////////////////////////
// Variable
public:
CAvi m_xCreateChrAvi; // For Create Charector
CAvi m_xStartGameAvi; // For Create Start Game
INT m_nRenderState;
private:
protected:
CWHWilImageData *m_pxImage;
};
#endif //_BACK_GROUND_H
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -