acc_aa.h 423 B

1234567891011121314151617
  1. // Copyright 2018 yuzu emulator team
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. #include "core/hle/service/acc/acc.h"
  6. namespace Service::Account {
  7. class ACC_AA final : public Module::Interface {
  8. public:
  9. explicit ACC_AA(std::shared_ptr<Module> module,
  10. std::shared_ptr<ProfileManager> profile_manager);
  11. };
  12. } // namespace Service::Account