// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) VRMADA, All rights reserved.
//
// --------------------------------------------------------------------------------------------------------------------
namespace UltimateXR.Networking
{
///
/// Interface for classes that implement network functionality using an SDK.
///
public interface IUxrNetworkSdk
{
#region Public Types & Data
///
/// Gets the SDK implemented.
///
string SdkName { get; }
#endregion
}
}