using UnityEngine; public class BirdGameStats : MonoBehaviour { public int birdsFoundInLevel; // Start is called once before the first execution of Update after the MonoBehaviour is created void Start() { } public void BirdFound() { birdsFoundInLevel += 1; } }