Example #1
0
 public AppMain.OBS_ACT_TBL Assign(AppMain.OBS_ACT_TBL obsTbl)
 {
     this.act_id = obsTbl.act_id;
     this.time   = obsTbl.time;
     this.flag   = obsTbl.flag;
     return(this);
 }
Example #2
0
 public OBS_TBL_WORK(AppMain.OBS_TBL_WORK tblWork)
 {
     Array.Copy((Array)tblWork.key_timer, (Array)this.key_timer, this.key_timer.Length);
     Array.Copy((Array)tblWork.move_timer, (Array)this.move_timer, this.move_timer.Length);
     this.flag = tblWork.flag;
     this.spd.Assign(tblWork.spd);
     this.scale.Assign(tblWork.scale);
     this.dir.Assign(tblWork.dir);
     this.act_tbl   = tblWork.act_tbl;
     this.move_tbl  = tblWork.move_tbl;
     this.scale_tbl = tblWork.scale_tbl;
     this.dir_tbl   = tblWork.dir_tbl;
     Array.Copy((Array)tblWork.data_work, (Array)this.data_work, this.data_work.Length);
     Array.Copy((Array)tblWork.repeat_point, (Array)this.repeat_point, this.repeat_point.Length);
 }
Example #3
0
 public OBS_ACT_TBL(AppMain.OBS_ACT_TBL obsTbl)
 {
     this.act_id = obsTbl.act_id;
     this.time   = obsTbl.time;
     this.flag   = obsTbl.flag;
 }