Files
eden/src/core/hle/service/audio/audctl.h
T

18 lines
351 B
C++
Raw Normal View History

2018-07-31 19:59:42 -04:00
// 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;
2018-07-31 19:59:42 -04:00
};
} // namespace Service::Audio