14 lines
206 B
C#
14 lines
206 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using Net.Client;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace BITKit
|
||
|
{
|
||
|
public interface IGDNetClientProvider
|
||
|
{
|
||
|
ClientBase GetClient();
|
||
|
}
|
||
|
}
|
||
|
|