diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-01-18 22:01:48 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2020-01-18 22:01:48 -0500 |
| commit | 0c61f00d57a4ebe6e3072dd220091f31db2838c0 (patch) | |
| tree | a70036d9b37df07c4f23fc4fd0ef0d0b7d68af9f /main.cpp | |
| parent | 44e59c5ff469a1f4b9d86a27068e6d0388d4f233 (diff) | |
| download | erable-godot-0c61f00d57a4ebe6e3072dd220091f31db2838c0.tar.gz erable-godot-0c61f00d57a4ebe6e3072dd220091f31db2838c0.tar.bz2 erable-godot-0c61f00d57a4ebe6e3072dd220091f31db2838c0.zip | |
Added project files
Diffstat (limited to 'main.cpp')
| -rw-r--r-- | main.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..784d95d --- /dev/null +++ b/main.cpp @@ -0,0 +1,11 @@ +#include "player.h" + +#include <QApplication> + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + Player w; + w.show(); + return a.exec(); +} |
