summaryrefslogtreecommitdiff
path: root/src/client/font.h
diff options
context:
space:
mode:
authorConnor Thomson <blumatrikz@gmail.com>2026-09-08 18:27:39 -0700
committerConnor Thomson <blumatrikz@gmail.com>2026-09-08 18:27:39 -0700
commitf1ddc12b68b4e4c8087962de25260470e6df2bea (patch)
tree7d0440a6402a9b0ef75ded23fa64b68534255bba /src/client/font.h
parent6025860a61386bf767b29c3ec5fd0d31285f1056 (diff)
Add tuxanci2 files
Diffstat (limited to 'src/client/font.h')
-rw-r--r--src/client/font.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/client/font.h b/src/client/font.h
deleted file mode 100644
index 8ee2cf0..0000000
--- a/src/client/font.h
+++ /dev/null
@@ -1,27 +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
-
-#define FONT_SIZE 16
-
-extern bool_t font_is_inicialized();
-extern void font_init();
-extern void font_draw(char *s, int x, int y, int r, int g, int b);
-extern void font_drawMaxSize(char *s, int x, int y, int w, int h,
- int r, int g, int b);
-extern int font_get_size();
-extern void font_text_size(char *s, int *w, int *h);
-extern void font_quit();
-
-#endif /* FONT_H */