22 lines
440 B
C#
22 lines
440 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class Test : MonoBehaviour
|
|
{
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
//Player.CSZS.SetPlayerID("主持人", "123");
|
|
List<string> strings = ZZZPlayer.CSZS.GetPlayerID("主持人");
|
|
Debug.Log("aaaaa"+strings[0]);
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|