using System; using System.Windows.Forms; using System.Collections.Generic; namespace OpenMetaverse.GUITestClient { public abstract class Interface { public string Name; public string Description; public GridClient Client; public TabPage TabPage; public abstract void Initialize(); public abstract void Paint(object sender, PaintEventArgs e); /// /// When set to true, think will be called. /// public bool Active; } }