예제 #1
0
 void Start()
 {
     mCool = minionCooldown.getInstance();
     faith = faithHud.getInstance();
 }
예제 #2
0
 public static faithHud getInstance()
 {
     if(instance == null)
         instance = (faithHud)FindObjectOfType(typeof(faithHud));
     return instance;
 }
예제 #3
0
 // Use this for initialization
 void Start()
 {
     manager = UnitManager.getInstance();
     faith = faithHud.getInstance ();
     StartCoroutine("CoStart");
 }
예제 #4
0
파일: Skill.cs 프로젝트: cmapua/Mythos-High
 void Awake()
 {
     manager = UnitManager.getInstance();
     hud = faithHud.getInstance();
     //Invoke("destroy", duration);
 }
예제 #5
0
 void Awake()
 {
     faith = faithHud.getInstance();
     cool = minionCooldown.getInstance();
 }