예제 #1
0
 public ClockEntryRep(C64Interfaces.IFile stateFile, ClockOpFactory factory)
     : base(stateFile, factory)
 {
     _length = stateFile.ReadByte();
     _cycle = stateFile.ReadByte();
 }
예제 #2
0
 public ClockEntry(C64Interfaces.IFile stateFile, ClockOpFactory factory)
 {
     _op        = factory.CreateFromStateFile(stateFile);
     _comboNext = stateFile.ReadBool();
 }
예제 #3
0
 public ClockEntry(C64Interfaces.IFile stateFile, ClockOpFactory factory)
 {
     _op = factory.CreateFromStateFile(stateFile);
     _comboNext = stateFile.ReadBool();
 }
예제 #4
0
 public ClockEntryRep(C64Interfaces.IFile stateFile, ClockOpFactory factory)
     : base(stateFile, factory)
 {
     _length = stateFile.ReadByte();
     _cycle  = stateFile.ReadByte();
 }