aboutsummaryrefslogtreecommitdiffstats
path: root/src/render.h
blob: 15f9cda15027ff3472fef6f40b5b3318a4d9e449 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef GBC_RENDER_H
#define GBC_RENDER_H

#include "gb.h"

void term_init(void);
void term_restore(void);
void render_frame(GB *gb);
// Poll keyboard, update gb->buttons. Returns false if quit requested.
bool input_poll(GB *gb);

#endif