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