-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
db2d185
commit dedc8e3
Showing
1,128 changed files
with
30,783 additions
and
750 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
#------------------------------------------------- | ||
# | ||
# Project created by QtCreator 2020-05-22T09:26:04 | ||
# | ||
#------------------------------------------------- | ||
|
||
QT += core gui | ||
|
||
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets | ||
|
||
TARGET = MarioDungeon | ||
TEMPLATE = app | ||
|
||
|
||
SOURCES += main.cpp \ | ||
Dungeon.cpp \ | ||
storewidget.cpp \ | ||
factory.cpp \ | ||
sound.cpp \ | ||
interface.cpp \ | ||
mainwindow.cpp \ | ||
menu.cpp \ | ||
sign.cpp \ | ||
rooms.cpp \ | ||
chatroom.cpp \ | ||
help.cpp | ||
|
||
HEADERS += \ | ||
Dungeon.h \ | ||
storewidget.h \ | ||
factory.h \ | ||
sound.h \ | ||
interface.h \ | ||
mainwindow.h \ | ||
menu.h \ | ||
sign.h \ | ||
request.h \ | ||
rooms.h \ | ||
chatroom.h \ | ||
help.h | ||
QT += multimedia | ||
RC_ICONS = MarioDungeon.ico | ||
|
||
RESOURCES += \ | ||
sources.qrc |
Oops, something went wrong.