// Copyright Epic Games, Inc. All Rights Reserved. // This file is automatically generated. Changes to this file may be overwritten. namespace Epic.OnlineServices.Platform { /// /// All possible states of the network /// public enum NetworkStatus : int { /// /// Network cannot be used. /// Disabled = 0, /// /// We may not be connected to the internet. The network can still be used, but is expected to probably fail. /// Offline = 1, /// /// We think we're connected to the internet. /// Online = 2 } }