20 lines
315 B
C#
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;
|
|
}
|
|
|
|
|
|
}
|