mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 04:53:29 +01:00
bleh
This commit is contained in:
parent
39af38f3d8
commit
7e887031de
1 changed files with 3 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Globalization;
|
||||
using System.Linq;
|
||||
using Microsoft.Xna.Framework;
|
||||
using MonoGame.Extended;
|
||||
|
@ -25,12 +26,12 @@ namespace MLEM.Extended.Tiled {
|
|||
}
|
||||
|
||||
public static float GetFloat(this TiledMapProperties properties, string key) {
|
||||
float.TryParse(properties.Get(key), out var val);
|
||||
float.TryParse(properties.Get(key), NumberStyles.Number, NumberFormatInfo.InvariantInfo, out var val);
|
||||
return val;
|
||||
}
|
||||
|
||||
public static int GetInt(this TiledMapProperties properties, string key) {
|
||||
int.TryParse(properties.Get(key), out var val);
|
||||
int.TryParse(properties.Get(key), NumberStyles.Number, NumberFormatInfo.InvariantInfo, out var val);
|
||||
return val;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue