You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
KinectExercise_FrancoBroda/KinectUtils/BaseGesture.cs

24 lines
527 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Kinect;
namespace KinectUtils
{
public abstract class BaseGesture
{
public BaseGesture() { }
public string GestureName { get; set; }
// <GestureRecognizedEventArgs> a faire nous mêmes
public EventHandler GestureRecognized { get; set; }
public abstract void TestGesture(Body body);
protected void OnGestureRecognized() { }
}
}