diff options
author | lonkaars <loek@pipeframe.xyz> | 2024-05-15 15:05:07 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2024-05-15 15:05:07 +0200 |
commit | 83ed40fd01120e1b46dba5d2bac895862731196d (patch) | |
tree | a2d4e78ec97e337d8808e234d70aaccc95c53bb4 /draw.h | |
parent | 0a5c176456b7afe024910183392d59116c37088e (diff) |
separate draw loop into file
Diffstat (limited to 'draw.h')
-rw-r--r-- | draw.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -0,0 +1,7 @@ +#pragma once + +#include <GLFW/glfw3.h> + +/** @brief draw loop iteration, called once for every frame */ +void draw(GLFWwindow*); + |