17 lines
344 B
C++
17 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; }
|
|
};
|