20 lines
364 B
C#
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()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|