Guest User

Untitled

a guest
May 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scala 0.30 KB | None | 0 0
  1.  
  2.   @tailrec final def mainLoop(loop:Boolean,world:World):Boolean = {
  3.     val frameInc = frame+1;
  4.     Display.update()
  5.     //renderLesson01()
  6.     //renderLesson02()
  7.     val newWorld = renderLesson03(world)
  8.     Display.sync(FRAMERATE)
  9.     if (!loop) true
  10.     else mainLoop(pollInput(),newWorld)
  11.   }
Add Comment
Please, Sign In to add comment