Exemplo n.º 1
0
 public void Run()
 {
     TrialSetStart?.Invoke(this, new EventArgs());
     _StartTime   = DateTime.Now;
     CurrentTrial = 1;
     RunTrial();
 }
Exemplo n.º 2
0
 private void ScriptFSM_TrialSetStart(object sender, EventArgs e)
 {
     TrialSetStart?.Invoke(sender, e);
 }
Exemplo n.º 3
0
 public void RunTrialSet()
 {
     TrialSetStart?.Invoke(this, _TrialLoop.Iterations);
     RunTrial();
 }