/* orxonox - the future of 3D-vertical-scrollers Copyright (C) 2004 orx This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. ### File Specific: main-programmer: Simon Hofmann co-programmer: */ #include "sound_test.h" #include "SDL.h" #include "SDL_mixer.h" using namespace std; SoundTest::SoundTest () { } SoundTest::~SoundTest () { } void main (void){ SDL_Surface *screen; SDL_Init(SDL_INIT_VIDEO); screen = SDL_SetVideoMode(320, 240, 0, 0); SoundControl* sound = new SoundControl; sound.SoundControl(); sound->playOgg(music.ogg); sound.~SoundControl(); }