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 PostureHandsOnHead(), new PostureHandUp(), new RightHandUp(), new TwoHandsDragon(), new ClapHands(), // Ajoutez d'autres gestes ici }; } } }