forked from YutaTachibana0310/SankouGoudou2019Summer
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBossDefeat.h
37 lines (31 loc) · 785 Bytes
/
BossDefeat.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//=====================================
//
//ボス撃破ヘッダ[BossDefeat.h]
//Author:GP12B332 21 立花雄太
//
//=====================================
#ifndef _BOSSDEFEAT_H_
#define _BOSSDEFEAT_H_
#include "main.h"
#include "IStateMachine.h"
#include "BossEnemyModel.h"
/**************************************
前方宣言
***************************************/
/**************************************
マクロ・列挙子定義
***************************************/
/**************************************
クラス定義
***************************************/
class BossEnemyModel::BossDefeat : public IStateMachine<BossEnemyModel>
{
public:
void OnStart(BossEnemyModel* entity);
int OnUpdate(BossEnemyModel* entity);
private:
int cntFrame;
Transform* effect;
Transform* core;
};
#endif