Mini-Games-Game/Assets/Scripts/Moles_IsHit.cs
Santi 3111305a83 WackAMole: Moles only give one point per, a timer has been added, comments
Timer: Created a universal timer

Colours: Improved Comments, cubes now randomly appear on start. When a cube is in a container it gets randomly teleported back
2024-06-07 14:37:52 +01:00

20 lines
364 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Moles_IsHit : MonoBehaviour
{
public bool IsHit;
//*Start is called before the first frame update
void Start()
{
IsHit = false; //*Mole starts as not being hit
}
//*Update is called once per frame
void Update()
{
}
}