aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Audio_asset.h
blob: 0b8e48e23007988025a78cd27994e0b1139b5457 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once


#include "resource.h"
#include <string>


namespace crepe::api {


class Audio : public Resource {

public:
	Audio(const std::string&);
	~Audio();

};
}