mirror of
https://github.com/ConjureETS/MTI860_VR_Multi_Controller.git
synced 2026-03-24 12:31:15 +00:00
17 lines
348 B
C#
17 lines
348 B
C#
using UnityEngine;
|
|
|
|
namespace JoyCon
|
|
{
|
|
public class JoyConBehaviour : MonoBehaviour
|
|
{
|
|
protected JoyconManager JoyConManager;
|
|
protected const int JcLegInd = 0;
|
|
protected const int JcArmInd = 1;
|
|
|
|
protected virtual void Start()
|
|
{
|
|
JoyConManager = JoyconManager.Instance;
|
|
}
|
|
}
|
|
}
|