summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio/audctl.h
blob: 9d2d9e83bc2fdd82e7997f95b65c21aae6da04d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include "core/hle/service/service.h"

namespace Service::Audio {

class AudCtl final : public ServiceFramework<AudCtl> {
public:
    explicit AudCtl();
    ~AudCtl() override;
};

} // namespace Service::Audio