// Why this
src.Level=F["Level"]
src.Exp=F["Exp"]
// Instead of
F["Level"]>>src.Level
F["Exp"]>>src.Exp
//F
var/savefile/F=new("Players/[ckey(src.key)].sav")
Problem description:
What are the differences between those ? Is it a matter of performance or.. ?
Thanks in advance.