#ifndef DRAWING_H #define DRAWING_H #include 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