diff options
Diffstat (limited to 'dev/a3-earthquake/main.cc')
-rw-r--r-- | dev/a3-earthquake/main.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/dev/a3-earthquake/main.cc b/dev/a3-earthquake/main.cc new file mode 100644 index 0000000..e2261e7 --- /dev/null +++ b/dev/a3-earthquake/main.cc @@ -0,0 +1,10 @@ +/** CSci-4611 Assignment 3: Earthquake + */ + +#include "quake_app.h" + +int main(int argc, const char *argv[]) { + QuakeApp app; + app.Run(); + return 0; +} |