diff options
author | sanine <sanine.not@pm.me> | 2022-01-26 02:32:06 -0600 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-01-26 02:32:06 -0600 |
commit | 6b687b91e788b4e91a6ed30640a2477b9596b954 (patch) | |
tree | be0ebf99cd8ff3776f59a33b42ef22ab07c71a6c /experimental/tectonics/tectonics.h | |
parent | 672819693ddf1d203c304697b63f44059cff09b6 (diff) |
refactor: move drawing functions into drawing.h/drawing.c
Diffstat (limited to 'experimental/tectonics/tectonics.h')
-rw-r--r-- | experimental/tectonics/tectonics.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/experimental/tectonics/tectonics.h b/experimental/tectonics/tectonics.h index de5b18a..bbde9dd 100644 --- a/experimental/tectonics/tectonics.h +++ b/experimental/tectonics/tectonics.h @@ -3,7 +3,6 @@ #include <stdlib.h> #include <stdbool.h> -#include <cairo.h> #include "geometry.h" @@ -22,7 +21,6 @@ struct world_t { void create_world(struct world_t *world, int n_points); void free_world(struct world_t *world); -void render_world(cairo_t *cr, struct world_t *world); void run_world_step(struct world_t *world); #endif |