aboutsummaryrefslogtreecommitdiffstats
path: root/include/render.hpp
diff options
context:
space:
mode:
authorAndy <drumsetmonkey@gmail.com>2017-01-19 09:21:12 -0500
committerAndy <drumsetmonkey@gmail.com>2017-01-19 09:21:12 -0500
commit213d9ccfbb4752d4c62d6b7e6b3f9172cdf1bccc (patch)
tree7872c6f30c8adf048a7863a33d837299c7fb0771 /include/render.hpp
parent19a32074595a4a2797eaeb978f8bd302f736f6a6 (diff)
parent8452b199d28bea53bf2c5e3b3d604064000fc73d (diff)
Limb animation actually works
Diffstat (limited to 'include/render.hpp')
-rw-r--r--include/render.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/render.hpp b/include/render.hpp
index 0a2adcd..997d7d0 100644
--- a/include/render.hpp
+++ b/include/render.hpp
@@ -69,11 +69,12 @@ namespace Render {
extern Shader worldShader;
extern Shader textShader;
- void initShaders(void);
-
void useShader(Shader *s);
void drawRect(vec2 ll, vec2 ur, float z);
+
+ void init(void);
+ void render(const int& fps);
}
#endif // RENDER_HPP_