diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-05 14:24:39 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-05 14:24:39 +0200 |
commit | b99e38badb82c5cc79771a77c5f6ea180c67ee4f (patch) | |
tree | 9cc3381095363b8ee8e1ce19130345cc3a9bb375 /src/crepe/Sound.h | |
parent | 202a9ec288ded78771e1f7e4c711a7612b201b9d (diff) |
move Asset from crepe::api to crepe
Diffstat (limited to 'src/crepe/Sound.h')
-rw-r--r-- | src/crepe/Sound.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/crepe/Sound.h b/src/crepe/Sound.h index 339dd7c..1ac20a7 100644 --- a/src/crepe/Sound.h +++ b/src/crepe/Sound.h @@ -5,7 +5,7 @@ #include <memory> -#include "api/Asset.h" +#include "Asset.h" namespace crepe { @@ -66,10 +66,10 @@ public: public: Sound(const char * src); - Sound(std::unique_ptr<api::Asset> res); + Sound(std::unique_ptr<Asset> res); private: - void load(std::unique_ptr<api::Asset> res); + void load(std::unique_ptr<Asset> res); private: SoLoud::Wav sample; |