So I am new to maps, vectors too, but I read a guide on those.
And I need to do one thing with the map that I haven't figured out yet.
Implement this C# code into C++
map.TryGetValue(oldValue, out newValue)
In the C# code map is a dictionary, so I want to do the same thing with a map file, from my understanding the TryGetValue() function looks for the first parameter, in the keys, and if it finds it will store the value into the reference newValue. Any help? Ty :)