Pascal Serrarens de12c36220 First commit
2022-01-11 16:51:37 +01:00

14 lines
269 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Passer.Humanoid {
public class HandPoseHandler : MonoBehaviour {
public void PoseHandler(int pose) {
Debug.Log("Handler: " + pose);
}
}
}