This commit is contained in:
MihailRis
2024-02-27 16:23:16 +03:00
parent 97539aa9f4
commit 58661a94a6
7 changed files with 349 additions and 138 deletions
+4 -2
View File
@@ -19,8 +19,8 @@ namespace audio {
return pcm;
}
speakerid_t newInstance(int priority) const override {
return 0;
Speaker* newInstance(int priority) const override {
return nullptr;
}
};
@@ -37,6 +37,8 @@ namespace audio {
glm::vec3 up
) override {}
void update(double delta) override {}
static NoAudio* create();
};
}