Abdul Mukheem Shaik 35fcbc1e24 initial commit
2024-11-06 18:38:19 +01:00

11 lines
214 B
C#

using UnityEngine;
namespace VarjoExample
{
[RequireComponent(typeof(Rigidbody))]
public class Interactable : MonoBehaviour
{
[HideInInspector]
public Hand activeHand = null;
}
}