using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GUI.DataProvider { public interface IGUIDataSource { float Yaw { get; set; } float Roll { get; set; } float Pitch { get; set; } } #if DEBUG public class TestDataSource : IGUIDataSource { public float Yaw { get; set; } public float Roll { get; set; } public float Pitch { get; set; } } #endif }