git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@1961 52acb1d6-8a22-11de-b505-999d5b087335
24 lines
559 B
C#
24 lines
559 B
C#
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);
|
|
|
|
/// <summary>
|
|
/// When set to true, think will be called.
|
|
/// </summary>
|
|
public bool Active;
|
|
}
|
|
}
|