Mini-Games-Game/Assets/Scripts/Moles_IsHit.cs

25 lines
493 B
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
//* General Comments or Finished Tasks
//TODO Tasks left to be done for game
//! Bugs or Issues
//? Questions or Suggestions
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()
{
}
}