diff options
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,4 +1,6 @@ -struct Background { - float R, G, B, A; -}; +typedef struct { + float pos[3]; + float color[3]; +} vertex; +enum AXIS {X_AXIS, Y_AXIS, Z_AXIS}; |