mirror of
https://github.com/ConjureETS/DeathBook.git
synced 2026-03-24 04:20:58 +00:00
16 lines
323 B
C#
16 lines
323 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
using UnityEngine.UI;
|
|
using DeathBook.Model;
|
|
|
|
public class CollectedSoulsPanel : MonoBehaviour
|
|
{
|
|
public Text CollectedSouls;
|
|
|
|
// Update is called once per frame
|
|
void Update ()
|
|
{
|
|
CollectedSouls.text = LevelManager.Instance.GameLevel.NumDead.ToString();
|
|
}
|
|
}
|