TurtleBrains  0.3.1
High quality, portable, C++ framework for rapid 2D game development.
HowTo: Egg Drop Game Tutorial

The Golden Egg Drop tutorial will introduce you to creating a game using the TurtleBrains framework. First a sprite will be set as a backdrop, then basic creating basic entities that interact and collide, and finally finishing with a few sound effects.

  1. Create the EggDropGameScene derived from tbGame::GameScene
  2. Add a backdrop image using tbGraphics::Sprite
  3. Create and add the BasketEntity derived from tbGame::Entity
  4. Create the EggEntity
  5. Add the Gameplay
  6. Add Sound Effects using tbAudio::AudioManager
egg_drop_gameplay.gif

First Step: Create the EggDropGameScene