You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
619 B
24 lines
619 B
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
// This file is automatically generated. Changes to this file may be overwritten.
|
|
|
|
namespace Epic.OnlineServices.Platform
|
|
{
|
|
/// <summary>
|
|
/// All possible states of the network
|
|
/// </summary>
|
|
public enum NetworkStatus : int
|
|
{
|
|
/// <summary>
|
|
/// Network cannot be used.
|
|
/// </summary>
|
|
Disabled = 0,
|
|
/// <summary>
|
|
/// We may not be connected to the internet. The network can still be used, but is expected to probably fail.
|
|
/// </summary>
|
|
Offline = 1,
|
|
/// <summary>
|
|
/// We think we're connected to the internet.
|
|
/// </summary>
|
|
Online = 2
|
|
}
|
|
}
|