diff options
author | kitty piapiac <kcp@bsd.computer> | 2023-04-16 03:39:23 -0700 |
---|---|---|
committer | kitty piapiac <kcp@bsd.computer> | 2023-04-16 03:39:23 -0700 |
commit | 190869967285173e92d4c8cf06bea1e99718fffe (patch) | |
tree | ce27937b54a542d4321efcbaac5b295e5de98faa /include | |
parent | 4136e8f2e1e5da874d58fcea3b1f004b07c9677f (diff) |
draw a triangle
i wonder where kitty-cricket learnt this one from
Diffstat (limited to 'include')
-rw-r--r-- | include/graph.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/graph.h b/include/graph.h index 59c0655..b2a9ffa 100644 --- a/include/graph.h +++ b/include/graph.h @@ -1,6 +1,11 @@ #ifndef MINO_GRAPH_H #define MINO_GRAPH_H X V graph_init(V); -X V graph_loop(V); X V graph_deinit(V); +X V graph_events(V); +/*actual rendering*/ +X V graph_before(V); +X V graph_after(V); +/*shapes*/ +X V graph_triangle(V); #endif |