Initial check-in of GUITestClient, including the Heightmap example ported to a plugin. Feel free to add more examples and make window resizing not suck (while staying Mono 1.2.4 compatible)

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@1198 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2007-05-22 13:45:34 +00:00
parent 5e76b038f6
commit 28bea53fa8
12 changed files with 861 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
using System;
using System.Windows.Forms;
using System.Collections.Generic;
namespace libsecondlife.GUITestClient
{
public abstract class Interface
{
public string Name;
public string Description;
public SecondLife 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;
}
}