Monday, February 2, 2015

void whatIf(Scenario s)

{
   if !(s.happened()) && (s.worth() >=  g_It)
   {
      s.run();
      whatIf(s);
   }
   Return;
}

No comments:

Post a Comment