summaryrefslogtreecommitdiffhomepage
path: root/src/render.h
blob: 7a16c838e2304052a018f2244910a209d19b57ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef GAME_RENDER_H
#define GAME_RENDER_H

#include "raylib.h"
#include "rlgl.h"
#include "world.h"

void
renderWorld(World* world, Camera* camera);

#endif