dungeon_crawler
annotate prototype/src/renderer.h @ 24:e122ba214ee1
implementing the command console
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Thu, 23 Aug 2012 18:03:11 +0300 |
parents | d98240a13793 |
children | 0357994effe2 |
rev | line source |
---|---|
nuclear@15 | 1 #ifndef RENDERER_H_ |
nuclear@15 | 2 #define RENDERER_H_ |
nuclear@15 | 3 |
nuclear@23 | 4 class Level; |
nuclear@23 | 5 |
nuclear@17 | 6 bool init_renderer(int xsz, int ysz); |
nuclear@15 | 7 void destroy_renderer(); |
nuclear@15 | 8 |
nuclear@23 | 9 void resize_renderer(int xsz, int ysz); |
nuclear@23 | 10 |
nuclear@23 | 11 void render_deferred(const Level *level); |
nuclear@15 | 12 |
nuclear@15 | 13 #endif // RENDERER_H_ |