Moving examples, mapgenerator, and VisualParamGenerator to Programs folder (SVN is seriously ruined still, don't check out yet)
git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@1961 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
23
Programs/examples/GUITestClient/Interface.cs
Normal file
23
Programs/examples/GUITestClient/Interface.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user