网上演练

12 lines
237 B

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using AX.NetworkSystem;
public class CloseSession : MonoBehaviour
{
private void OnDestroy()
{
NetworkManager.DestroyAllSession();
}
}