summaryrefslogtreecommitdiff
path: root/src/ui.h
blob: 73b355bf32173148708280971559cf051213eb2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _UI_H
#define _UI_H

#include "common.h"
#include "renderer.h"
#include "physics.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