Inheritance: MonoBehaviour
Ejemplo n.º 1
0
 private void Awake()
 {
     if (instance == null)
     {
         instance = this;
     }
     else
     {
     }
 }
Ejemplo n.º 2
0
 public HudSystem(Wing player, Entity hudNt)
 {
     this.player     = player;
     energyIndicator = hudNt.GetComponent <EnergyIndicator>();
 }