dolphin/Source/Core/AudioCommon/NullSoundStream.h
2021-08-08 03:05:03 +01:00

16 lines
344 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 SetRunning(bool running) override;
void SetVolume(int volume) override;
static bool IsValid() { return true; }
};