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

20 lines
315 B
C#
Raw Normal View History

2025-10-17 14:38:42 +02:00
using UnityEngine;
2025-10-20 13:57:38 +02:00
public class BirdGameStats : MonoBehaviour
2025-10-17 14:38:42 +02:00
{
2025-10-20 13:57:38 +02:00
public int birdsFoundInLevel;
2025-10-17 14:38:42 +02:00
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
}
2025-10-20 13:57:38 +02:00
public void BirdFound()
{
birdsFoundInLevel += 1;
2025-10-17 14:38:42 +02:00
}
2025-10-20 13:57:38 +02:00
2025-10-17 14:38:42 +02:00
}