Пример #1
0
 void CompleteConstellationListener()
 {
     if (actions.PrimaryAction.WasPressed)
     {
         constManager.CompleteConstellation();
     }
 }
 void CompleteConstellationListener()
 {
     if (actions.PrimaryAction.WasPressed)
     {
         if (constManager.CompleteConstellation())
         {
             ChangeColor(GameData.StarType.None);
             lastStar = null;
         }
     }
 }