blob: 7f585158bcdee91865b0248b43292e8e998d6cf6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef RENDER_SDL_H_
#define RENDER_SDL_H_
#include "vdp.h"
void render_init();
void render_context(vdp_context * context);
void render_wait_quit();
#endif //RENDER_SDL_H_
|