Friends. Good night.
I have a doubt. I'm building a tower defense that in place of the towers will be characters.
They will have attributes (attack strength, speed, stamina and defense), I can create a family for everyone to have that data.
My doubt is how safe these information.
I thought about using array, but it does not accept strings. And the dictionary, from what I understand, that would be a dictionary for each character / tower.
This is the way? There are other means.
Example of what I have to save.
Name / attack strength / speed / stamina / defense
pc1 / 1 / 2 / 1 / 3
pc2 / 3 / 1 / 3 / 2
pc3 / 2 / 3 / 2 / 4