示例#1
0
文件: Highscore.cs 项目: themasch/GDK
 public void save()
 {
     CSV.write(this.data, this.filename);
 }
示例#2
0
文件: Highscore.cs 项目: themasch/GDK
 public Highscore(String filename)
 {
     this.filename = filename;
     this.data     = CSV.read(filename);
 }