Example #1
0
 // Use this for initialization
 void Start()
 {
     Instance           = this;
     conditionText      = GetComponent <Text> ();
     conditionText.text = " ";
     aConditionIsMet    = false;
 }
Example #2
0
 void Awake()
 {
     instance = this;
     board    = BaseSaver.GetBoard();
     if (board == null)
     {
         board = new BoardMeta();
     }
     won      = false;
     unlkChar = false;
 }