aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2015-11-03 08:45:52 -0500
committerdrumsetmonkey <abelleisle@roadrunner.com>2015-11-03 08:45:52 -0500
commit1b9de2f6461936004ddbd200ebc945c1df0c51c8 (patch)
tree875bdaa976f1d085fc0919ce27700200df7fe9f9 /include
parentf8ebf8fd3d5691cd45566281a1f54c5ecbc43762 (diff)
Worked on rays
Diffstat (limited to 'include')
-rw-r--r--include/common.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/common.h b/include/common.h
index b016020..11d5226 100644
--- a/include/common.h
+++ b/include/common.h
@@ -39,7 +39,7 @@ typedef unsigned int uint;
* This flag lets the compiler know that we are using shaders
*/
-#define SHADERS
+#define SHADERSf
/*
* Create a basic 2-point structure for coordinate saving
@@ -50,6 +50,11 @@ typedef struct {
float y;
} vec2;
+typedef struct {
+ vec2 start;
+ vec2 end;
+} Ray;
+
/*
* Define the game's name (displayed in the window title),
* the desired window dimensions,