From 135cc1ef50930b86189be2303f68ab387ebf7f27 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Sun, 17 Feb 2019 23:04:20 +0100 Subject: WIP on parser --- libstorycode/narrative.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'libstorycode/narrative.h') diff --git a/libstorycode/narrative.h b/libstorycode/narrative.h index b9a9f7c..8f9727f 100644 --- a/libstorycode/narrative.h +++ b/libstorycode/narrative.h @@ -29,8 +29,16 @@ typedef struct _narrative Narrative; +#include "slide.h" + extern Narrative *narrative_new(void); extern void narrative_free(Narrative *n); +extern void narrative_add_prestitle(Narrative *n, const char *text); +extern void narrative_add_bp(Narrative *n, const char *text); +extern void narrative_add_text(Narrative *n, const char *text); +extern void narrative_add_slide(Narrative *n, Slide *slide); + + #endif /* NARRATIVE_H */ -- cgit v1.2.3