HandFactory.cs 212 B

12345678910
  1. using System;
  2. using UnityEngine;
  3. namespace Leap.Unity
  4. {
  5. public abstract class HandFactory : MonoBehaviour
  6. {
  7. public abstract HandRepresentation MakeHandRepresentation(Hand hand, ModelType modelType);
  8. }
  9. }