mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-08-28 17:45:39 +00:00
14 lines
346 B
C++
14 lines
346 B
C++
|
|
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
||
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
|
||
|
|
#include "common/logging/log.h"
|
||
|
|
#include "core/frontend/applets/net_connect.h"
|
||
|
|
|
||
|
|
namespace Core::Frontend {
|
||
|
|
|
||
|
|
NetConnectApplet::~NetConnectApplet() = default;
|
||
|
|
|
||
|
|
void DefaultNetConnectApplet::Close() const {}
|
||
|
|
|
||
|
|
} // namespace Core::Frontend
|