using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using KinectUtils; namespace MyGesturesBank { public class AllGesturesFactory : IGestureFactory { public IEnumerable CreateGestures() { return new List { //new SwipeRightHand(), //new ClapHands() // Ajoutez d'autres gestes ici }; } } }