static public int openRead(IntPtr l)
 {
     try {
         Game.ActionRecord self = (Game.ActionRecord)checkSelf(l);
         var ret = self.openRead();
         pushValue(l, ret);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Example #2
0
 public static bool startRead(string fileName)
 {
     stopRead();
     arRead = new ActionRecord(fileName);
     return(arRead.openRead());
 }