TurtleBrains  0.2.1
High quality, portable, C++ API for native application and game development.
HowTo: Egg Drop Game Tutorial

This short tutorial will teach how to create a Two-Dimensional Game using TurtleBrains with a sprite as a backdrop, entities that interact and collide, and finishing with some sounds.

  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