blob: e1a11269aabadbee693e3cef6121aad87702782d (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef DRAWING_H
#define DRAWING_H
#include <cairo.h>
void get_cairo_size(cairo_t *cr, int *width, int *height);
void draw_quadtree(cairo_t *cr, struct quadtree_node_t *root);
void draw_world(cairo_t *cr, struct world_t *world);
#endif
|