Attack cooldown works fr this time

This commit is contained in:
2024-10-21 15:56:30 -07:00
parent bf1c9fe5da
commit b784c9a3eb
5 changed files with 111 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
using UnityEngine;
public class AttackCooldown : MonoBehaviour
{
Teo player;
TMPro.TMP_Sprite bar;
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
player = GameObject.FindGameObjectWithTag("Player").GetComponent<Teo>();
}
// Update is called once per frame
void Update()
{
}
}