Files
AppleHillsProduction/Assets/Scripts/PuzzleS/BirdGameStats.cs

20 lines
315 B
C#

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;
}
}