blob: a9b04ed0f6ffa69281aadda41592885e748a396b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "Audio_asset.h"
#include <string>
using namespace crepe::api;
Audio::Audio(const std::string& content){
this->m_content = content;
}
Audio::~Audio(){
}
|