summaryrefslogtreecommitdiff
path: root/futuregael/src/vectortext.h
diff options
context:
space:
mode:
Diffstat (limited to 'futuregael/src/vectortext.h')
-rw-r--r--futuregael/src/vectortext.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/futuregael/src/vectortext.h b/futuregael/src/vectortext.h
index e5adbdb..1f0d11c 100644
--- a/futuregael/src/vectortext.h
+++ b/futuregael/src/vectortext.h
@@ -40,9 +40,13 @@ public:
class glyphWord{
public:
- glyphWord(){amount=1.0f;}
+ glyphWord(){
+ amount=1.0f;
+ width=0.0f;
+ }
vector<glyph> glyphs;
float amount;
+ float width;
};
class SVGFont{