takmo / LD25

The public repository for our (my friends and I) entry for Ludum Dare 25
0 stars 0 forks source link

Create Main Loop #1

Open takmo opened 11 years ago

takmo commented 11 years ago

Create a main game loop. Cinema is the class the controls the window. Read through the header file for a bit of info on how it should work. You will probably need to modify Cinema to allow for a main loop.

Main loop should handle input and store the time elapsed since last frame. Name the variable "deltaTime" or something.

Get input. Store/reset timer. Tick objects (I'll probably add that later.) Render Repeat