suyu/src/core/hle/service/fatal/fatal_p.cpp

13 lines
336 B
C++
Raw Normal View History

2018-03-20 14:55:20 +01:00
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "core/hle/service/fatal/fatal_p.h"
namespace Service::Fatal {
2018-03-20 14:55:20 +01:00
Fatal_P::Fatal_P(std::shared_ptr<Module> module)
: Module::Interface(std::move(module), "fatal:p") {}
} // namespace Service::Fatal