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:
23
libsecondlife/examples/GUITestClient/Interface.cs
Normal file
23
libsecondlife/examples/GUITestClient/Interface.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user