Ejemplo n.º 1
0
    /*
     * Spawn a single wild fruit plant on the specified tile
     */
    private void SpawnWildFruitOnTile(GameObject tileObj)
    {
        GroundTile tile = tileObj.GetComponent <GroundTile> ();

        tile.PlantAdult(ItemIDs.WILDFLOWER_SEEDS);
    }