Files
Crash-Course/Assets/Scripts/UseItem.cs

17 lines
278 B
C#
Raw Normal View History

2025-02-17 19:02:14 -05:00
using UnityEngine;
public class UseItem : MonoBehaviour
{
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}