fatal_p.cpp 368 B

1234567891011121314
  1. // Copyright 2018 yuzu emulator team
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include "core/hle/service/fatal/fatal_p.h"
  5. namespace Service::Fatal {
  6. Fatal_P::Fatal_P(std::shared_ptr<Module> module)
  7. : Module::Interface(std::move(module), "fatal:p") {}
  8. Fatal_P::~Fatal_P() = default;
  9. } // namespace Service::Fatal