summaryrefslogtreecommitdiff
path: root/src/network/verify_user.cpp
diff options
context:
space:
mode:
authorGravatar liamwhite2022-07-25 18:31:45 -0400
committerGravatar GitHub2022-07-25 18:31:45 -0400
commit1e67d2b59f6dfd561768db3fb9a8e0c6a16ec9f2 (patch)
tree999411f1ca76390654d1034c6d0bd2c47c3f101c /src/network/verify_user.cpp
parentMerge pull request #8564 from lat9nq/dinner-fork (diff)
parentnetwork: Address review comments (diff)
downloadyuzu-1e67d2b59f6dfd561768db3fb9a8e0c6a16ec9f2.tar.gz
yuzu-1e67d2b59f6dfd561768db3fb9a8e0c6a16ec9f2.tar.xz
yuzu-1e67d2b59f6dfd561768db3fb9a8e0c6a16ec9f2.zip
Merge pull request #8541 from FearlessTobi/multiplayer-part1
yuzu, network: Add room service and UI configuration
Diffstat (limited to '')
-rw-r--r--src/network/verify_user.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/network/verify_user.cpp b/src/network/verify_user.cpp
new file mode 100644
index 000000000..f84cfe59b
--- /dev/null
+++ b/src/network/verify_user.cpp
@@ -0,0 +1,17 @@
1// SPDX-FileCopyrightText: Copyright 2018 Citra Emulator Project
2// SPDX-License-Identifier: GPL-2.0-or-later
3
4#include "network/verify_user.h"
5
6namespace Network::VerifyUser {
7
8Backend::~Backend() = default;
9
10NullBackend::~NullBackend() = default;
11
12UserData NullBackend::LoadUserData([[maybe_unused]] const std::string& verify_uid,
13 [[maybe_unused]] const std::string& token) {
14 return {};
15}
16
17} // namespace Network::VerifyUser