projectEli/Assets/Inventory System/Scripts/UI/BlockRaycast.cs

22 lines
363 B
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
2023-03-16 22:44:34 +00:00
namespace SimpleInventorySystem
{
2023-03-16 22:44:34 +00:00
public class BlockRaycast : MonoBehaviour
{
2023-03-16 22:44:34 +00:00
// Start is called before the first frame update
void Start()
{
2023-03-16 22:44:34 +00:00
}
// Update is called once per frame
void Update()
{
}
}
}