summaryrefslogtreecommitdiff
path: root/Source/Font.h
diff options
context:
space:
mode:
authorXavi Del Campo <xavi.dcr@tutanota.com>2020-03-03 18:10:15 +0100
committerXavi Del Campo <xavi.dcr@tutanota.com>2020-03-03 18:10:27 +0100
commitb28059d49afce8524361fa7597adcc9e108f4eab (patch)
tree5041d37aa9571ac738ced4b9f16388550d0e8f78 /Source/Font.h
parentbf3bb8cdc590a18195e25c38f4f4db11e8bcd1c4 (diff)
downloadopensend-b28059d49afce8524361fa7597adcc9e108f4eab.tar.gz
Renamed folders to lowercase
Diffstat (limited to 'Source/Font.h')
-rw-r--r--Source/Font.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/Source/Font.h b/Source/Font.h
deleted file mode 100644
index 5a7d6b5..0000000
--- a/Source/Font.h
+++ /dev/null
@@ -1,44 +0,0 @@
-#ifndef __FONT_HEADER__
-#define __FONT_HEADER__
-
-/* *************************************
- * Includes
- * *************************************/
-
-#include "Global_Inc.h"
-#include "System.h"
-#include "Gfx.h"
-#include "GameStructures.h"
-#include <stdarg.h>
-
-/* *************************************
- * Defines
- * *************************************/
-
-#define FONT_DEFAULT_CHAR_SIZE 16
-#define FONT_DEFAULT_INIT_CHAR '!'
-
-/* **************************************
- * Structs and enums *
- * *************************************/
-
-/* *************************************
- * Global prototypes
- * *************************************/
-
-bool FontLoadImage(char* strPath, TYPE_FONT * ptrFont);
-void FontSetSize(TYPE_FONT * ptrFont, short size, short bitshift);
-void FontPrintText(TYPE_FONT *ptrFont, short x, short y, char* str, ...);
-void FontSetInitChar(TYPE_FONT * ptrFont, char c);
-void FontSetFlags(TYPE_FONT * ptrFont, FONT_FLAGS flags);
-void FontCyclic(void);
-void FontSetSpacing(TYPE_FONT* ptrFont, short spacing);
-
-/* *************************************
- * Global variables
- * *************************************/
-
-TYPE_FONT RadioFont;
-TYPE_FONT SmallFont;
-
-#endif //__FONT_HEADER__