using System; using System.Collections.Generic; namespace KinectUtils { public interface IGestureFactory { IEnumerable CreateGestures(); } }