AnneLise bird counter implemented

This commit is contained in:
2025-10-20 13:57:38 +02:00
parent 6e5a6c049f
commit b49bb43f79
22 changed files with 520 additions and 11 deletions

View File

@@ -0,0 +1,19 @@
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;
}
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 47259b63379fb1b40aa2650a13f01fd1