I'am extremely new when it comes to creating and using XML files.
Say for example I have this code for storing highscores
[Serializable]
public class HighScoreData
{
public string[] PlayerName;
public int[] Score;
public int[] Level;
}
and I want to create xml code to that when it deserializes it'll look something like this
playername= {"Rocco","Shawn","Derrick"}
score= {100,200,300}
level = {1,2,3}
What would that xml code look like?
ISerializable.