blob: 73b706d19d2f28523f12536e15e9b65b39a1d580 (
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(int width, int height);
void render_context(vdp_context * context);
void render_wait_quit();
#endif //RENDER_SDL_H_
|