-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrickfactory.cpp
56 lines (46 loc) · 1.05 KB
/
brickfactory.cpp
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
#include"brickfactory.h"
#include"addballbrick.h"
#include"shrinkplankbrick.h"
#include"normalbrick.h"
#include"stretchplankbrick.h"
#include"decelerateplankbrick.h"
#include"hardbrick.h"
#include"harderbrick.h"
#include"hardestbrick.h"
#include"accelerateplankbrick.h"
AbstractBrick* BrickFactory::constructAddBallBrick()
{
return new AddBallBrick;
}
AbstractBrick* BrickFactory::constructShrinkPlankBrick()
{
return new ShrinkPlankBrick;
}
AbstractBrick* BrickFactory::constructNormalBrick()
{
return new NormalBrick;
}
AbstractBrick* BrickFactory::constructStretchPlankBrick()
{
return new StretchPlankBrick;
}
AbstractBrick* BrickFactory::constructAcceleratePlankBrick()
{
return new AcceleratePlankBrick;
}
AbstractBrick* BrickFactory::constructDeceleratePlankBrick()
{
return new DeceleratePlankBrick;
}
AbstractBrick* BrickFactory::constructHardBrick()
{
return new HardBrick;
}
AbstractBrick* BrickFactory::constructHarderBrick()
{
return new HarderBrick;
}
AbstractBrick* BrickFactory::constructHardestBrick()
{
return new HardestBrick;
}