summaryrefslogtreecommitdiff
path: root/library.h
diff options
context:
space:
mode:
Diffstat (limited to 'library.h')
-rw-r--r--library.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/library.h b/library.h
index d078861..af2eedc 100644
--- a/library.h
+++ b/library.h
@@ -1,6 +1,7 @@
#pragma once
#include <memory>
+#include "font.h"
#include "global.h"
#include "object_base.h"
@@ -21,5 +22,7 @@ shared_ptr<Object> instance_create(int x,int y){
void draw_text(int x,int y,const char *s);
void draw_textf(int x,int y,const char *format,...) __attribute__((format (printf, 3, 4)));
+void draw_set_font(const Font *font);
+
void log(const char *s);
void logf(const char *format,...) __attribute__((format (printf, 1, 2)));