-
Notifications
You must be signed in to change notification settings - Fork 2
/
BossHitParticle.h
57 lines (48 loc) · 1.19 KB
/
BossHitParticle.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
56
57
//=====================================
//
//ボスヒットパーティクルヘッダ[BossHitParticle.h]
//Author:GP12B332 21 立花雄太
//
//=====================================
#ifndef _BOSSHITPARTICLE_H_
#define _BOSSHITPARTICLE_H_
#include "main.h"
#include "Framework\BaseParticle.h"
#include "Framework\BaseEmitter.h"
#include "Framework\BaseParticleController.h"
/**************************************
前方宣言
***************************************/
/**************************************
マクロ・列挙子定義
***************************************/
/**************************************
BossHitParticleクラス
***************************************/
class BossHitParticle : public BaseParticle
{
public:
BossHitParticle();
void Init();
void Update();
private:
float speed;
D3DXVECTOR3 moveDir;
};
/**************************************
BossHitParticleEmitterクラス
***************************************/
class BossHitParticleEmitter : public BaseEmitter
{
void Init();
void Update();
};
/**************************************
BossHitParticleControllerクラス
***************************************/
class BossHitParticleController : public BaseParticleController
{
void Init();
void Emit();
};
#endif