This is the following link to the XML I am trying to read in c#.
http://randomspam.co/INFO/103000000.img.xml
I need to know how to retrieve the following values of the names: width, height, centerX, & centerY and put each one into its respective INT.
<imgdir name="miniMap">
<int name="width" value="3966"/>
<int name="height" value="1676"/>
<int name="centerX" value="2343"/>
<int name="centerY" value="1318"/>
How would I make a class and a function to retrieve the values I need above, so I am able to call it anytime with any other ID (ex. 103000000).
Thanks as I have no clue on how to read XML files.