Esempio n. 1
0
 internal void Execute(CSSLEvent e)
 {
     if (e.Time < Time)
     {
         throw new Exception("Attempted to execute an event in the past.");
     }
     PreviousEventTime = Time;
     Time = e.Time;
     e.Execute();
 }
Esempio n. 2
0
 internal void Execute(CSSLEvent e)
 {
     PreviousEventTime = Time;
     Time = e.Time;
     e.Execute();
 }