cb213901
xiaoyu
添加一个游戏的源码和编译选项
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//
// SoundUtils.hpp
// SteveMaggieCpp
//
// Created by Katarzyna Kalinowska-Górska on 10.05.2017.
//
//
#ifndef SoundUtils_h
#define SoundUtils_h
#include <stdio.h>
#include <string>
#include <vector>
class SoundUtils {
public:
static unsigned int playRandomSound(std::string soundFolderPath = "", std::vector<const std::string> soundNames = std::vector<const std::string>(), bool stopEffects = true);
};
#endif /* SoundUtils_hpp */
|