// SPDX-License-Identifier: BSD-2-Clause // Copyright (c) 2025 Kirill Dmitrievich // File: direct_connection.hh // Description: Direct connection screen #ifndef CLIENT_GUI_DIRECT_CONNECTION_HH #define CLIENT_GUI_DIRECT_CONNECTION_HH #pragma once namespace direct_connection { void init(void); void layout(void); } // namespace direct_connection #endif