fix some more timings and the long standing gradient software bug (which was function...
[supertux.git] / contrib / tilemanager / Parser.cs
index 784893f..daa0ade 100644 (file)
@@ -85,6 +85,9 @@ public class Parser {
     public bool BoolValue {
         get { return StringValue == "t" ? true : false; }
     }
+    public float FloatValue {
+        get { return Single.Parse(lexer.TokenString); }
+    }
 }
 
 }