19 lines
318 B
Plaintext
19 lines
318 B
Plaintext
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
using UnityEngine.UI;
|
||
|
|
||
|
public class PHomeGemDisplayer : MonoBehaviour
|
||
|
{
|
||
|
[SerializeField]
|
||
|
private Text m_gemText;
|
||
|
|
||
|
public int GemCount
|
||
|
{
|
||
|
set
|
||
|
{
|
||
|
m_gemText.text = value.ToString();
|
||
|
}
|
||
|
}
|
||
|
}
|