Health/Assets/Scripts/PoseCheck/HandsUp.cs

10 lines
194 B
C#
Raw Normal View History

2023-11-10 07:17:23 +00:00
using OpenCVForUnity.CoreModule;
using System.Collections.Generic;
public class HandsUp : PoseBase
{
public override bool CheckPose(List<Point> points)
{
return true;
}
}