ToySoundUtils.h 471 Bytes
//
//  ToySoundUtils.hpp
//  SteveMaggieCpp
//
//  Created by Katarzyna Kalinowska-Górska on 10.05.2017.
//
//

#ifndef ToySoundUtils_h
#define ToySoundUtils_h

#include <stdio.h>
#include <string>
#include <vector>

class ToySoundUtils {

    public:
        static unsigned int playRandomSound(std::string soundFolderPath = "", std::vector<const std::string> soundNames = std::vector<const std::string>(), bool stopEffects = true);

};

#endif /* ToySoundUtils_hpp */