aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Sound.cpp
blob: f45a697a6bf28c442da77077450a792165577eb7 (plain)
1
2
3
4
5
6
7
8
9
#include "Sound.h"

using namespace crepe;

Sound::Sound(std::unique_ptr<api::Resource> res) {
	_res = std::move(res);
}