repo.or.cz
/
EroBeats.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2016 project-added to repo
[EroBeats.git]
/
Release
/
BGM.h
blob
3408aa779818e5145247550c9164c7984405929b
1
#pragma once
2
#include <SDL/SDL.h>
3
#include <SDL Mixer\SDL_mixer.h>
4
5
#include<string>
6
#include <sstream>
7
#include <iostream>
8
#include <fstream>
9
#include<vector>
10
#include<array>
11
#include <chrono>
12
#include <thread>
13
14
#include
"unzip.h"
15
16
class
BGM
17
{
18
public
:
19
BGM
();
20
~
BGM
();
21
22
std
::
vector
<
Mix_Music
*>*
gameBGM
;
23
24
void
playBGM
();
25
void
playBGM
(
int
bgmNum
);
26
void
endBGM
();
27
void
setVolume
(
int
vol
);
28
29
30
std
::
string password
;
31
};
32