aboutsummaryrefslogtreecommitdiffstats
path: root/dev/texture-demo/main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'dev/texture-demo/main.cc')
-rw-r--r--dev/texture-demo/main.cc9
1 files changed, 9 insertions, 0 deletions
diff --git a/dev/texture-demo/main.cc b/dev/texture-demo/main.cc
new file mode 100644
index 0000000..3bbc8b8
--- /dev/null
+++ b/dev/texture-demo/main.cc
@@ -0,0 +1,9 @@
+/** CSci-4611 In-Class Example */
+
+#include "example.h"
+
+int main(int argc, const char *argv[]) {
+ Example app;
+ app.Run();
+ return 0;
+}