void ft_mapsize(string s) { int x, y, index; index = s.IndexOf(' '); x = int.Parse(s.Substring(0, index)); y = int.Parse(s.Substring(index + 1, s.Length - index - 1)); if (map.width == x && map.height == y) { return; } map.width = x; map.height = y; map.Initialize(); map.scalecamera(); }