aboutsummaryrefslogtreecommitdiff
path: root/resource-manager/Audio_asset.h
blob: 7f7f8cde20b50e5de8dc61093809bcd60514cce8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once


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


class Audio : public Resource {

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




};