-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBlockBreaker.pro
101 lines (90 loc) · 1.91 KB
/
BlockBreaker.pro
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#-------------------------------------------------
#
# Project created by QtCreator 2016-12-03T13:22:19
#
#-------------------------------------------------
RC_FILE = icon.rc
QT += core gui
QT += multimedia
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = BlockBreaker
TEMPLATE = app
SOURCES += main.cpp\
abstractball.cpp \
normalball.cpp \
bordersquare.cpp \
abstractplank.cpp \
normalplank.cpp \
gamescene.cpp \
abstractbrick.cpp \
normalbrick.cpp \
ballfactory.cpp \
fastball.cpp \
abstractsurprisingbrick.cpp \
gift.cpp \
addballbrick.cpp \
forbiddensquare.cpp \
shrinkplankbrick.cpp \
brickfactory.cpp \
shorterplank.cpp \
plankfactory.cpp \
stretchplankbrick.cpp \
longerplank.cpp \
slowball.cpp \
hardbrick.cpp \
harderbrick.cpp \
hardestbrick.cpp \
accelerateplankbrick.cpp \
decelerateplankbrick.cpp \
bigball.cpp \
smallball.cpp \
superball.cpp \
fastplank.cpp \
slowplank.cpp \
gamewindow.cpp \
HEADERS += \
abstractball.h \
normalball.h \
bordersquare.h \
abstractplank.h \
normalplank.h \
gamescene.h \
abstractbrick.h \
normalbrick.h \
ballfactory.h \
fastball.h \
abstractsurprisingbrick.h \
gift.h \
addballbrick.h \
forbiddensquare.h \
shrinkplankbrick.h \
brickfactory.h \
shorterplank.h \
plankfactory.h \
stretchplankbrick.h \
longerplank.h \
slowball.h \
hardbrick.h \
harderbrick.h \
hardestbrick.h \
accelerateplankbrick.h \
decelerateplankbrick.h \
bigball.h \
smallball.h \
superball.h \
fastplank.h \
slowplank.h \
gamewindow.h \
gamelevel.h \
RESOURCES += \
image.qrc \
music.qrc \
icon.qrc
FORMS += \
gamewindow.ui \
DISTFILES += \
BlockBreaker.pro.user \
icon.ico \
icon.rc
SUBDIRS += \
BlockBreaker.pro