the error says IDENTIFIER EXPECTED in my code about collision detection
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class NextLevel : MonoBehaviour
{
public GameObject BIRD;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
void OnTriggerEnter (BIRD.gameobject.tag = "Projectile")
{
//some code i havent written yet
}
}
}