dolphin-emulator/Source/Core/AudioCommon/NullSoundStream.h
2024-12-22 13:40:27 +01:00

17 lines
351 B
C++

// Copyright 2008 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include "AudioCommon/SoundStream.h"
class NullSound final : public SoundStream
{
public:
bool Init() override;
bool Start() override;
bool Stop() override;
void SetVolume(int volume) override;
static bool IsValid() { return true; }
};