breakpoint

This commit is contained in:
CortexCore
2023-06-17 16:30:53 +08:00
parent cd02761be7
commit 877ba6e548
88 changed files with 8715 additions and 988 deletions

View File

@@ -0,0 +1,17 @@
using System.Collections;
using System.Collections.Generic;
using Net.Client;
using Net.Component;
using UnityEngine;
namespace BITKit
{
[System.Serializable]
public class GDNetClientProvider:IGDNetClientProvider
{
[SerializeField] private ClientManager clientManager;
public ClientBase GetClient() => clientManager.client;
}
}