bcat.h 388 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/bcat/module.h"
  6. namespace Service::BCAT {
  7. class BCAT final : public Module::Interface {
  8. public:
  9. explicit BCAT(std::shared_ptr<Module> module, const char* name);
  10. ~BCAT() override;
  11. };
  12. } // namespace Service::BCAT