summaryrefslogtreecommitdiff
path: root/include/graph.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/graph.h')
-rw-r--r--include/graph.h7
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