summaryrefslogtreecommitdiff
path: root/include/font.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/font.h')
-rwxr-xr-xinclude/font.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/include/font.h b/include/font.h
deleted file mode 100755
index f938b3b..0000000
--- a/include/font.h
+++ /dev/null
@@ -1,26 +0,0 @@
-
-#ifndef FONT_H
-
-#define FONT_H
-
-#include <SDL_ttf.h>
-#include <assert.h>
-#include "main.h"
-
-#define COLOR_WHITE 255, 255, 255
-#define COLOR_BLACK 0, 0, 0
-
-#define COLOR_RED 255, 0, 0
-#define COLOR_GREEN 0, 255, 0
-#define COLOR_BLUE 0, 0, 255
-
-#define COLOR_YELLOW 255, 255, 0
-
-extern bool_t isFontInicialized();
-extern void initFont(char *file,int size);
-extern void drawFont(char *s,int x,int y,int r,int g,int b);
-extern int getFontSize();
-extern void getTextSize(char *s, int *w, int *h);
-extern void quitFont();
-
-#endif