diff options
author | Ian C <ianc@noddybox.co.uk> | 2005-02-28 00:59:35 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2005-02-28 00:59:35 +0000 |
commit | 75c03c360d6a3c06e214d33a7c6ac1233e4b0303 (patch) | |
tree | 20b3c24b12057b6bf4ad3234d6b14111436c059b | |
parent | 6ad3b7995269f12fdf3ea47afcc8770b06c24d88 (diff) |
Initial import
-rw-r--r-- | imagefont/imagefont.bmx | 13 | ||||
-rw-r--r-- | imagefont/test.bmx | 5 |
2 files changed, 18 insertions, 0 deletions
diff --git a/imagefont/imagefont.bmx b/imagefont/imagefont.bmx new file mode 100644 index 0000000..1208cee --- /dev/null +++ b/imagefont/imagefont.bmx @@ -0,0 +1,13 @@ +Module Noddybox.ImageFont + +ModuleInfo "Framework: Simple Bitmap Font Routines" +ModuleInfo "Copyright: Ian Cowburn" +ModuleInfo "Author: Ian Cowburn" +ModuleInfo "License: Ian Cowburn" +ModuleInfo "Version: $Revision$" + +' $Id$ + +Type ImageFont + +End Type diff --git a/imagefont/test.bmx b/imagefont/test.bmx new file mode 100644 index 0000000..04930e6 --- /dev/null +++ b/imagefont/test.bmx @@ -0,0 +1,5 @@ +' $Id$ + +Import "imagefont.bmx" + +Graphics 800,600,32,60 |