//--------------------------------------------------------------------------------------------------------------------------------------------------- // // Copyright (C)2007 DarkWynter Studios. All rights reserved. // //--------------------------------------------------------------------------------------------------------------------------------------------------- // {Contact : darkwynter.com for licensing information //--------------------------------------------------------------------------------------------------------------------------------------------------- using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Text; using System.Windows.Forms; using DarkWynter.Engine.Utilities; namespace DarkWynter.App { public partial class UCADInterfaceControl : UserControl, IUCAD_Control { /// /// Allows user to access the top-level form. /// public static IUCAD _UCAD_Inteface; public IUCAD UCAD_Inteface { get { return _UCAD_Inteface; } set { _UCAD_Inteface = value; } } public UCADInterfaceControl() { InitializeComponent(); } } }