From fee4cbf40b07e17eca676b4687c51313f7cfdd2e Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 4 Feb 2021 18:37:17 -0600 Subject: Added example projects from lecture --- dev/rays/main.cc | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 dev/rays/main.cc (limited to 'dev/rays/main.cc') 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; +} -- cgit v1.2.3