summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/acc/acc_u0.h
blob: 3bd9c31646061718383a1534bc96a6d8d312b202 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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/acc/acc.h"

namespace Service::Account {

class ACC_U0 final : public Module::Interface {
public:
    explicit ACC_U0(std::shared_ptr<Module> module, std::shared_ptr<ProfileManager> profile_manager,
                    Core::System& system);
    ~ACC_U0() override;
};

} // namespace Service::Account