blob: e114560da22473aa3da3de38866908d0b3c59589 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef _UI_H
#define _UI_H
#include "common.h"
#include "renderer.h"
#include "physics.h"
#include "console.h"
int ui_init(void);
void ui_quit(void);
void ui_renderer_window_register(r_window *rw);
void ui_event(SDL_Event *event);
void ui_draw(phy_sim *sim);
#endif // _UI_H
|