diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-11-03 08:47:35 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-11-03 08:47:35 -0500 |
commit | 6b7dd6a9c031fd2129676500bc8e8633d3fcf234 (patch) | |
tree | c6eaa6fac2aafc50fd26d905a79759591230340c /include | |
parent | 505027ab6dec50f991e2c21abf270c491128487a (diff) | |
parent | 1b9de2f6461936004ddbd200ebc945c1df0c51c8 (diff) |
ui improvements
Diffstat (limited to 'include')
-rw-r--r-- | include/common.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/common.h b/include/common.h index db60dd6..41cc7b9 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, |