// Copyright (c) 2012-2024 Wojciech Figat. All rights reserved. #pragma once #include "Engine/Core/Config.h" /// /// The high-level network connection state. /// API_ENUM(Namespace="FlaxEngine.Networking") enum class NetworkConnectionState { /// /// Not connected. /// Offline = 0, /// /// Connection process was started but not yet finished. /// Connecting, /// /// Connection has been made. /// Connected, /// /// Disconnection process was started but not yet finished. /// Disconnecting, /// /// Connection ended. /// Disconnected, };