summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/fatal/fatal_p.cpp
blob: 066ccf6b0151943f76a17f976d673d108d2f0667 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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 {

Fatal_P::Fatal_P(std::shared_ptr<Module> module, Core::System& system)
    : Module::Interface(std::move(module), system, "fatal:p") {}

Fatal_P::~Fatal_P() = default;

} // namespace Service::Fatal