summaryrefslogtreecommitdiffstats
path: root/src/screen.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/screen.h')
-rw-r--r--src/screen.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/screen.h b/src/screen.h
index 6eaf430..8d16428 100644
--- a/src/screen.h
+++ b/src/screen.h
@@ -22,13 +22,17 @@
#ifndef SCREEN_H_
#define SCREEN_H_
+#include <stdbool.h>
+
+#include "speech.h"
+
struct screen;
struct screen *
screen_new(void);
-void
-screen_draw(struct screen *screen);
+bool
+screen_main(struct screen *screen, struct speech *speech);
struct screen *
screen_destroy(struct screen **screen_p);