-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWerewolf.pro
More file actions
42 lines (35 loc) · 729 Bytes
/
Werewolf.pro
File metadata and controls
42 lines (35 loc) · 729 Bytes
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
#-------------------------------------------------
#
# Project created by QtCreator 2018-12-06T12:07:18
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Werewolf
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
gunner.cpp \
witch.cpp \
seer.cpp \
serialkiller.cpp \
sectleader.cpp \
jailer.cpp \
priest.cpp \
bodyguard.cpp \
player.cpp \
game.cpp \
shaman.cpp
HEADERS += mainwindow.h \
gunner.h \
witch.h \
seer.h \
serialkiller.h \
sectleader.h \
jailer.h \
priest.h \
bodyguard.h \
player.h \
game.h \
shaman.h
FORMS += mainwindow.ui