diff options
Diffstat (limited to 'dev/rays/main.cc')
-rw-r--r-- | dev/rays/main.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/dev/rays/main.cc b/dev/rays/main.cc new file mode 100644 index 0000000..3bbc8b8 --- /dev/null +++ b/dev/rays/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; +} |