13 lines
204 B
C
13 lines
204 B
C
#ifndef ZOOM_RENDER_H
|
|
#define ZOOM_RENDER_H
|
|
|
|
#include <zoom/types.h>
|
|
#include <zoom/light.h>
|
|
#include <GL/gl.h>
|
|
|
|
|
|
void Render();
|
|
void RenderWall(WALL, GLuint*);
|
|
void RenderWallLight(WALL, LIGHT);
|
|
|
|
#endif
|