資源簡介
funcode微信版打飛機實訓指南,詳細講述了在funcode平臺下用C++寫出一個游戲的步驟。
代碼片段和文件信息
//?子彈類方法的實現
#include?“CommonClass.h“
#include?“Bullet.h“
//?構造函數
Bullet::Bullet(const?char?*szName):CSprite(szName)
{
}
//?析構函數
Bullet::~Bullet()
{
}
//?設置子彈的生命值
//?iHp為子彈的生命值
void?Bullet::SetHp(const?int?iHp)
{
this->iHp?=?iHp;
}
//?設置子彈當前中心點的坐標
//?fPointX表示X方向中心點的坐標,fPointY表示Y方向中心點的坐標
void?Bullet::SetPoint(const?float?fPointX?const?float?fPointY)
{
this->fPointX?=?fPointX;
this->fPointY?=?fPointY;
}
//?設置子彈X方向中心點的坐標
//?fPointX表示X方向中心點的坐標
void?Bullet::SetPointX(const?float?fPointX)
{
this->fPointX?=?fPointX;
}
//?設置子彈Y方向中心點的坐標
//?fPointY表示Y方向中心點的坐標
void?Bullet::SetPointY(const?float?fPointY)
{
this->fPointY?=?fPointY;
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2018-06-04?14:48??微信版打飛機\
?????目錄???????????0??2018-06-04?14:48??微信版打飛機\Bin\
?????目錄???????????0??2018-06-04?14:48??微信版打飛機\Bin\common\
?????文件?????????498??2018-06-04?15:11??微信版打飛機\Bin\common\commonConfig.xm
?????目錄???????????0??2018-06-04?14:48??微信版打飛機\Bin\common\data\
?????目錄???????????0??2018-06-04?14:48??微信版打飛機\Bin\common\data\audio\
?????目錄???????????0??2018-06-04?14:48??微信版打飛機\Bin\common\data\fonts\
?????文件???????11766??2014-03-07?16:23??微信版打飛機\Bin\common\data\fonts\Arial?12?(ansi).uft
?????文件???????11219??2014-03-07?16:23??微信版打飛機\Bin\common\data\fonts\Arial?14?(ansi).uft
?????文件???????56777??2014-03-07?16:23??微信版打飛機\Bin\common\data\fonts\Arial?75?(ansi).uft
?????文件???????13875??2014-03-07?16:23??微信版打飛機\Bin\common\data\fonts\Arial?Bold?20?(ansi).uft
?????文件???????11290??2014-03-07?16:23??微信版打飛機\Bin\common\data\fonts\Lucida?Console?12?(ansi).uft
?????目錄???????????0??2018-06-04?14:48??微信版打飛機\Bin\common\data\help\
?????文件?????????365??2011-09-19?11:00??微信版打飛機\Bin\common\data\help\2.?License.hfl
?????目錄???????????0??2018-06-04?14:48??微信版打飛機\Bin\common\gamesc
?????文件????????9458??2011-09-19?11:00??微信版打飛機\Bin\common\gamesc
?????文件????????8724??2014-01-24?17:33??微信版打飛機\Bin\common\gamesc
?????文件????????2350??2011-09-19?11:00??微信版打飛機\Bin\common\gamesc
?????文件????????1566??2014-01-24?17:33??微信版打飛機\Bin\common\gamesc
?????文件????????1581??2011-09-19?11:00??微信版打飛機\Bin\common\gamesc
?????文件?????????836??2014-01-24?17:33??微信版打飛機\Bin\common\gamesc
?????目錄???????????0??2018-06-04?14:48??微信版打飛機\Bin\common\gamesc
?????文件????????4671??2011-09-19?11:00??微信版打飛機\Bin\common\gamesc
?????文件????????1773??2011-09-19?11:00??微信版打飛機\Bin\common\gamesc
?????文件????????1610??2011-09-19?11:00??微信版打飛機\Bin\common\gamesc
?????文件????????4194??2011-09-19?11:00??微信版打飛機\Bin\common\gamesc
?????文件????????5447??2011-09-19?11:00??微信版打飛機\Bin\common\gamesc
?????文件????????3911??2014-01-24?17:33??微信版打飛機\Bin\common\gamesc
?????文件????????3022??2011-09-19?11:00??微信版打飛機\Bin\common\gamesc
?????文件????????1395??2014-01-24?17:33??微信版打飛機\Bin\common\gamesc
?????文件???????10428??2011-09-19?11:00??微信版打飛機\Bin\common\gamesc
............此處省略193個文件信息
評論
共有 條評論