14 lines
269 B
C#
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);
|
|
}
|
|
}
|
|
}
|