using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; namespace DarkWynter.Engine.Utilities { public interface IUCAD { /// /// Allows user to load xml FormName attribute into form header, etc. /// string UCAD_FormName { get; set; } /// /// The upper-right panel of the display area. /// Panel UCAD_Main_Panel { get; set; } /// /// The left panel of the display area. /// Panel UCAD_Left_Panel { get; set; } /// /// The bottom panel of the display area. /// Panel UCAD_Bottom_Panel { get; set; } /// /// The bottom panel of the display area. /// Panel UCAD_Top_Panel { get; set; } } }