Hi,
I have some data in a csv file. Lets say:
Name,Level
foo,1
I have a class that map this csv, so I can read it, write it .
From the same class I made a custom resource
the part I'm missing is: How to apply the data I have in my class to my resource? (they match each other already) - its a silly question? But I don't want something like myresource.Name = myobject.Name;
I prefer something like myresource=myobject;
. Like a normal map.
Thank you