From 6c047429f637697bf7b6bebd3c7bc0e5b2ee2903 Mon Sep 17 00:00:00 2001 From: Achille Roussel Date: Wed, 18 Nov 2015 15:00:27 -0800 Subject: [PATCH] remove unused global variables --- font.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/font.go b/font.go index 81696c9..df65bfc 100644 --- a/font.go +++ b/font.go @@ -11,12 +11,6 @@ import ( "github.com/golang/freetype/truetype" ) -var ( - fontFolder = "../resource/font/" - fonts = make(map[string]*truetype.Font) - fontNamer FontFileNamer = FontFileName -) - // FontStyle defines bold and italic styles for the font // It is possible to combine values for mixed styles, eg. // FontData.Style = FontStyleBold | FontStyleItalic