scoreManager

PHOTO EMBED

Mon Jan 15 2024 06:25:15 GMT+0000 (Coordinated Universal Time)

Saved by @iliavial #c#

using System.Collections;
using Sestem.Collections.Generic;
using UnityEngine;
 
public class Balloon : MonoBehaviour
{
	public int score;
  
  	public void IncreaseScore(int amount)
  	{
    	score += amount;
  	}
  
}
content_copyCOPY