BITFALL/Assets/BITKit/Extensions/GameDesigner/GDNetClientProvider.cs

14 lines
206 B
C#
Raw Normal View History

2023-06-17 16:30:53 +08:00
using System.Collections;
using System.Collections.Generic;
using Net.Client;
using UnityEngine;
namespace BITKit
{
public interface IGDNetClientProvider
{
ClientBase GetClient();
}
}