Health/Assets/Scripts/PoseCheck/HandsHold.cs

10 lines
197 B
C#

using OpenCVForUnity.CoreModule;
using System.Collections.Generic;
public class HandsHold : PoseBase
{
public override bool CheckPose(List<Point> points)
{
return false;
}
}