14 lines
314 B
C#
14 lines
314 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class GanTanHao : MonoBehaviour
|
|
{
|
|
public Dictionary<string, string> KeyGanTanHao;
|
|
// Start is called before the first frame update
|
|
void Awake()
|
|
{
|
|
KeyGanTanHao = new Dictionary<string, string>();
|
|
}
|
|
}
|