diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-02-25 09:26:45 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-02-25 09:26:45 -0500 |
commit | 8f4cada7bf1068a9a3063636f7008cbe52875924 (patch) | |
tree | fc88a82dc8221df9921ff341bd61a455dabcef48 /include/common.h | |
parent | 0396f428411eb015f796643f9e7e38ca97f8fd42 (diff) |
ui.cpp neatinization
Diffstat (limited to 'include/common.h')
-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 a99e352..ff8d361 100644 --- a/include/common.h +++ b/include/common.h @@ -53,6 +53,11 @@ extern GLuint colorIndex; */ typedef struct { + int x; + int y; +} ivec2; + +typedef struct { float x; float y; } vec2; @@ -74,7 +79,7 @@ typedef struct { vec2 end; } Ray; -struct col{ +struct col { float red; float green; float blue; |