20 lines
427 B
C#
20 lines
427 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Xml;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class GoldRecord : MonoBehaviour
|
|
{
|
|
public Text txtInfo;
|
|
|
|
public void UpdatePanel(Dictionary<string,string> dic)
|
|
{
|
|
foreach (KeyValuePair<string, string> kvp in dic)
|
|
{
|
|
txtInfo.text = "ÄúÒÑÓÚ" + kvp.Key.Substring(0,11) + kvp.Value;
|
|
}
|
|
|
|
}
|
|
}
|