Пример #1
0
 public void createNewPlayerRecipes(Player player)
 {
     for (int i = 1; i <= 24; i++)
     {
         Player_Recipe playerrecipe = new Player_Recipe();
         playerrecipe.playerId       = player.id;
         playerrecipe.recipeId       = i;
         playerrecipe.recipeObtained = false;
         DatabaseOperations.AddPlayerRecipe(playerrecipe);
     }
 }