summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/fatal/fatal_p.h
blob: f7433683504c6da1378011d9260871a146c6f7f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include "core/hle/service/fatal/fatal.h"

namespace Service::Fatal {

class Fatal_P final : public Module::Interface {
public:
    explicit Fatal_P(std::shared_ptr<Module> module_, Core::System& system_);
    ~Fatal_P() override;
};

} // namespace Service::Fatal