diff options
| author | mailwl <mailwl@gmail.com> | 2018-03-20 16:55:20 +0300 |
|---|---|---|
| committer | mailwl <mailwl@gmail.com> | 2018-03-20 16:59:02 +0300 |
| commit | dca7cfb9cfea5a798db45926b2f5399c1e233e99 (patch) | |
| tree | 1ce233502d929b2146864f3dfa5389c869519ee4 /src/core/hle/service/fatal/fatal_u.h | |
| parent | f4700ccabff57955a43c8eb0df85c0c02b1b9724 (diff) | |
Service: add fatal:u, fatal:p services
Diffstat (limited to 'src/core/hle/service/fatal/fatal_u.h')
| -rw-r--r-- | src/core/hle/service/fatal/fatal_u.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/core/hle/service/fatal/fatal_u.h b/src/core/hle/service/fatal/fatal_u.h new file mode 100644 index 000000000..22374755e --- /dev/null +++ b/src/core/hle/service/fatal/fatal_u.h @@ -0,0 +1,18 @@ +// Copyright 2018 yuzu emulator team +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#pragma once + +#include "core/hle/service/fatal/fatal.h" + +namespace Service { +namespace Fatal { + +class Fatal_U final : public Module::Interface { +public: + explicit Fatal_U(std::shared_ptr<Module> module); +}; + +} // namespace Fatal +} // namespace Service |
