Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -272,11 +272,12 @@ Now that your development environment is setup and ready to go, you can dive in
2. What is the primary reason that game applications implement a *game loop* structure instead of using an event-based approach like traditional desktop applications?

:::question-answer
Game applications implement a *game loop* structure because games need to continuously update and render, event when there is no user input. In games, objects might be moving, animations playing, and physics calculating regardless of user interaction, requiring constant updating and rendering until the game is told to exit.
Game applications implement a *game loop* structure because games need to continuously update and render, even when there is no user input. In games, objects might be moving, animations playing, and physics calculating regardless of user interaction, requiring constant updating and rendering until the game is told to exit.
:::

3. What is the color of the game window when you run a MonoGame project for the first time?

:::question-answer
Cornflower Blue
:::