Esempio n. 1
0
 void Awake()
 {
     words            = new List <WordObject>();
     nameWords        = new List <NameWord>();
     wordBackgrounds  = new Sprite[4, 5];
     hopaeBackgrounds = new Sprite[6];
     stringWords      = new List <string> [4];
     for (int i = 0; i < 4; i++)
     {
         stringWords[i] = new List <string>();
     }
     currentPhase = PhaseEnum.Start;
     ResourcesLoader.ParseCSVFile();
     ResourcesLoader.LoadImages();
 }