From 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d Mon Sep 17 00:00:00 2001 From: Jef Date: Tue, 24 Sep 2024 14:54:57 +0200 Subject: Initial community commit --- Src/replicant/ogg/ifc_oggaudiodecoder.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Src/replicant/ogg/ifc_oggaudiodecoder.h (limited to 'Src/replicant/ogg/ifc_oggaudiodecoder.h') diff --git a/Src/replicant/ogg/ifc_oggaudiodecoder.h b/Src/replicant/ogg/ifc_oggaudiodecoder.h new file mode 100644 index 00000000..cf228162 --- /dev/null +++ b/Src/replicant/ogg/ifc_oggaudiodecoder.h @@ -0,0 +1,16 @@ +#pragma once +#include "../replicant/foundation/dispatch.h" + +class ifc_oggaudiodecoder : public Wasabi2::Dispatchable +{ +protected: + ifc_oggaudiodecoder() : Dispatchable(DISPATCHABLE_VERSION) {} + ~ifc_oggaudiodecoder() {} +public: + + enum + { + DISPATCHABLE_VERSION, + GET_BPS + }; +}; \ No newline at end of file -- cgit