Ejemplo n.º 1
0
 internal void getFullPath(string path)
 {
     this.CorrectImage   = MemorizeEntry.getFileFullPath(path, this.CorrectImage);
     this.CorrectMusic   = MemorizeEntry.getFileFullPath(path, this.CorrectMusic);
     this.IncorrectImage = MemorizeEntry.getFileFullPath(path, this.IncorrectImage);
     this.IncorrectMusic = MemorizeEntry.getFileFullPath(path, this.IncorrectMusic);
 }
Ejemplo n.º 2
0
 public void Save(string path)
 {
     this.correctImage   = MemorizeEntry.copyFile(this.correctImage, path);
     this.correctMusic   = MemorizeEntry.copyFile(this.correctMusic, path);
     this.incorrectImage = MemorizeEntry.copyFile(this.incorrectImage, path);
     this.incorrectMusic = MemorizeEntry.copyFile(this.incorrectMusic, path);
 }
Ejemplo n.º 3
0
 public override void Save(string path)
 {
     try
     {
         this.url = MemorizeEntry.copyFile(this.url, path);
     }
     catch
     {
     }
 }
Ejemplo n.º 4
0
 public override void getFullPath(string path)
 {
     this.Url = MemorizeEntry.getFileFullPath(path, this.Url);
 }
Ejemplo n.º 5
0
 internal void getFullPath(string path)
 {
     this.BackgroundImage = MemorizeEntry.getFileFullPath(path, this.BackgroundImage);
 }