?? directxplane2d.h
字號(hào):
// DirectXPlane2D.h
//
// Author: Lea Hayes
// Date Created: 10/03/2006
// Date Modified: 10/03/2006
#pragma once
#include "ResourceManager.h"
class DirectXPlane2D : public Resources::IResource
{
// Construction and destruction.
public:
DirectXPlane2D(LPCSTR lpszFilename = NULL);
virtual ~DirectXPlane2D();
// Pure virtual functions which must be overriden.
virtual void OnProcess(float nTime);
virtual void OnRender(float nTime);
virtual DWORD GetUniqueID() const;
// Virtual functions which can be overriden.
virtual void OnDestroy();
virtual HRESULT ReadFromFile(LPCSTR lpszFilename);
// Attributes.
private:
ResourceManager::ResHandle m_hTexture;
};
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -