-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRPG.pro
More file actions
60 lines (53 loc) · 1.13 KB
/
RPG.pro
File metadata and controls
60 lines (53 loc) · 1.13 KB
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
#-------------------------------------------------
#
# Project created by QtCreator 2013-05-14T12:05:52
#
#-------------------------------------------------
QT += core gui widgets
QT += network
TARGET = RPG
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
chatview.cpp \
statusview.cpp \
gameview.cpp \
server.cpp \
chatconnection.cpp \
client.cpp \
connectdialog.cpp \
startserverdialog.cpp \
preferencesdialog.cpp \
gamepiece.cpp \
grid.cpp \
gridadjustdialog.cpp \
baritem.cpp \
bargamepiece.cpp \
bardice.cpp \
aboutdialog.cpp
HEADERS += mainwindow.h \
chatview.h \
statusview.h \
gameview.h \
constants.h \
server.h \
chatconnection.h \
client.h \
connectdialog.h \
startserverdialog.h \
preferencesdialog.h \
gamepiece.h \
grid.h \
gridadjustdialog.h \
baritem.h \
bargamepiece.h \
bardice.h \
aboutdialog.h
FORMS += mainwindow.ui \
connectdialog.ui \
startserverdialog.ui \
preferencesdialog.ui \
gridadjustdialog.ui \
aboutdialog.ui
RESOURCES += \
resources.qrc