DeathBook/Assets/Scripts/CollectedSoulsPanel.cs
2015-08-17 00:03:15 -04:00

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();
}
}