Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3887 in orxonox.OLD for orxonox/branches/sound_engine/src/orxonox.cc


Ignore:
Timestamp:
Apr 19, 2005, 12:28:55 AM (20 years ago)
Author:
bensch
Message:

orxonox/trunk: added some classes to handle Audio

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/sound_engine/src/orxonox.cc

    r3790 r3887  
    3232#include "game_loader.h"
    3333#include "graphics_engine.h"
     34#include "sound_engine.h"
    3435#include "resource_manager.h"
    3536#include "text_engine.h"
     
    5758  if( localinput != NULL) delete world;
    5859  if( resources != NULL) delete resources;
    59   delete GraphicsEngine::getInstance(); // deleting the Graphics
     60  delete GraphicsEngine::getInstance(); // delets the Graphics Engine
     61  delete SoundEngine::getInstance();    // deletes the Sound Engine
    6062  delete ResourceManager::getInstance(); // deletes the Resource Manager
    6163  delete TextEngine::getInstance();
     
    131133{
    132134  printf("> Initializing sound\n");
    133   // SDL_Init(SDL_INIT_AUDIO);
    134   printf("Not yet implemented\n");
     135  SoundEngine::getInstance();
     136  printf("implementing\n");
    135137  return 0;
    136138}
Note: See TracChangeset for help on using the changeset viewer.