blob: f1867879006822615cd6f1349524b9cca8798cfb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// 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; }
};
|