summaryrefslogtreecommitdiff
path: root/include/text.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/text.h')
-rw-r--r--include/text.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/text.h b/include/text.h
new file mode 100644
index 0000000..7948c51
--- /dev/null
+++ b/include/text.h
@@ -0,0 +1,20 @@
+#include <SFML/Graphics.h>
+#include "common.h"
+
+FILE *openFile(char *filename);
+void checkArgs(int argc, char **argv);
+KeyMap *KeyMap_getLast(KeyMap **keyMap);
+KeyMap *KeyMap_new(KeyMap **keyMap);
+KeyMap *KeyMap_get(KeyMap **keyMap, const void *key);
+KeyMap *KeyMap_put(KeyMap **keyMap, const void *key, const void *value);
+List *List_getLast(List **list);
+List *List_new(List **list);
+List *ListOfKeyMapOfString_getFromYaml(char *filename);
+void KeyMapOfString_free(KeyMap *keyMap);
+void ListOfKeyMapOfString_free(List **list);
+int _loadText_getInt(void *obj, char *key);
+char *_loadText_getString(void *obj, char *key);
+void _loadText_initSfText(Text *objo, void *obji);
+List *ListOfText_getFromListOfKeyMapOfString(List *list);
+void Text_free(Text *obj);
+void ListOfText_free(List **list);