-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBossChargeEffect.h
55 lines (47 loc) · 1.18 KB
/
BossChargeEffect.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//=====================================
//
//ボスチャージエフェクト ヘッダ[BossChargeEffect.h]
//Author:GP12B332 21 立花雄太
//
//=====================================
#ifndef _BOSSCHARGEFFECT_H_
#define _BOSSCHARGEFFECT_H_
#include "main.h"
#include "Framework\AnimationParticle.h"
#include "Framework\BaseEmitter.h"
#include "Framework\BaseParticleController.h"
/**************************************
前方宣言
***************************************/
/**************************************
マクロ・列挙子定義
***************************************/
/**************************************
BossChargeParticleクラス
***************************************/
class BossChargeParticle : public AnimationParticle
{
public:
BossChargeParticle();
void Init();
void Update();
};
/**************************************
BossChargeEmitterクラス
***************************************/
class BossChargeEmitter : public BaseEmitter
{
public:
void Init();
void Update();
};
/**************************************
BossChargeParticleControllerクラス
***************************************/
class BossChargeParticleController : public BaseParticleController
{
public:
void Init();
void Emit();
};
#endif