stone.cpp

来自「过程的c++编译器 里面有超级玛丽的源代码 还有一个 管理系统的源代码」· C++ 代码 · 共 22 行

CPP
22
字号
/*********************************************
程序设计:罗穆峰  2008-11-20
http://lmf.biaotian.com
E-mail: lmf@biaotian.com
QQ: 16324942 [模范英雄]
*********************************************/

#include "Stone.h"
#include "图像数据.h"
#include "Game.h"

CStone::CStone(CGame * Game,int x, int y):CObject(Game,2,x,y,16,16,0)
{
}

const int * CStone::GetImage(bool * HInv,bool * VInv)
{
	*VInv=false;
	*HInv=false;
	return StoneImage;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?