using Microsoft.Kinect;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KinectUtils
{
///
/// The posture class.
///
public abstract class Posture : BaseGesture
{
///
/// Tests the posture.
///
/// The body
///
protected abstract bool TestPosture(Body body);
}
}