mirror of
https://github.com/zoriya/Skillfight.git
synced 2026-06-10 13:51:05 +00:00
20 lines
403 B
C#
20 lines
403 B
C#
using UnityEngine.UI;
|
|
using UnityEngine;
|
|
|
|
public class GameReference : MonoBehaviour {
|
|
|
|
public GameObject PauseUI;
|
|
public GameObject deathUI;
|
|
public GameObject deathText;
|
|
public Slider HealthSlider;
|
|
public GameObject InGameHUD;
|
|
|
|
[Space]
|
|
public GameObject CoconutsPrefab;
|
|
|
|
[Space]
|
|
public Image PassifIcon;
|
|
public Image PassifMask;
|
|
public Text PassifText;
|
|
}
|