0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

DXライブラリとC++を使ったゲーム制作1 Scene.hの下地

Posted at

今日から一か月半くらいの時間をかけてアクションシューティング2Dゲームを制作していこうと思います。題名はまだ決めていませんが美少女が銃火器をぶっ放す系のゲームにしていこうと思います。使用するのはDxLib.vc140です。
今回はゲームプレイシーンの下地を投稿しておきます。

class GameplayScene
{
public:
//定数などを入れる場所
private:
//データメンバを入れる場所
public:
// コンストラクタ
GamePlayScene();

// デストラクタ
~GamePlayScene();

// 操作
public:
// 初期化処理
void Initialize();

// 更新処理
void Update(const GameLib::InputDevice& inputDevice);//インプットデバイスでキーボードを使えるようにしておく

// 描画処理
void Render();

// 終了処理
void Finalize();

}

しっかりコメントを書いておいたほうが後々助かると思います。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?