Skip to content

Commit

Permalink
2020qt小学期第一周大作业 (#77)
Browse files Browse the repository at this point in the history
* cmt

* Create README.md

* Add files via upload

* Create README.md

* Add files via upload

* Create README.md

* cmt

* Update README.md

* Update README.md
  • Loading branch information
nldxtd committed Aug 31, 2020
1 parent d660acb commit a345d49
Show file tree
Hide file tree
Showing 22 changed files with 2,297 additions and 0 deletions.
Binary file not shown.
1 change: 1 addition & 0 deletions 大一小学期/Week_1-Qt/hw/2020/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
## https://github.com/nldxtd/wchSnake
1 change: 1 addition & 0 deletions 大一小学期/Week_1-Qt/hw/2020/code/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
### https://github.com/nldxtd/wchSnake
12 changes: 12 additions & 0 deletions 大一小学期/Week_1-Qt/hw/2020/code/image.qrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<RCC>
<qresource prefix="/">
<file>image/start.ico</file>
<file>image/pause.ico</file>
<file>image/continue.ico</file>
<file>image/restart.ico</file>
<file>image/load.ico</file>
<file>image/save.ico</file>
<file>image/quit.ico</file>
<file>image/logo.ico</file>
</qresource>
</RCC>
1 change: 1 addition & 0 deletions 大一小学期/Week_1-Qt/hw/2020/code/image/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
### https://github.com/nldxtd/wchSnake
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
11 changes: 11 additions & 0 deletions 大一小学期/Week_1-Qt/hw/2020/code/main.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#include "mainwindow.h"

#include <QApplication>

int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}

0 comments on commit a345d49

Please sign in to comment.