mybitmap.h
来自「source code for mini mario」· C头文件 代码 · 共 14 行
H
14 行
#pragma once
class MyBitmap
{
public:
MyBitmap(void);
MyBitmap(LPCTSTR str);
CBitmap *cb;
void DrawTransparent(CDC * pDC, int x, int y, COLORREF crColour);
void DrawTransparent(CDC * pDC, int x, int y,int x1, int y1,int width,int height, COLORREF crColour);
public:
~MyBitmap(void);
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?