Co-authored-by: m0_75251201 <m0_75251201@noreply.gitcode.com> Reviewed-on: Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite#55
16 lines
211 B
C#
16 lines
211 B
C#
using System;
|
|
using TMPro;
|
|
using UnityEngine;
|
|
|
|
namespace UI
|
|
{
|
|
public class CoinCountUI:MonoBehaviour
|
|
{
|
|
public TMP_Text text;
|
|
|
|
private void Start()
|
|
{
|
|
|
|
}
|
|
}
|
|
} |