Reorgnaize TestClient orphaned commands into appropriate folder structure

git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2825 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
Jim Radford
2009-05-28 00:55:58 +00:00
parent d373e13303
commit dc5356bf74
10 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
using System;
using OpenMetaverse;
namespace OpenMetaverse.TestClient
{
public class GoHomeCommand : Command
{
public GoHomeCommand(TestClient testClient)
{
Name = "gohome";
Description = "Teleports home";
Category = CommandCategory.Movement;
}
public override string Execute(string[] args, UUID fromAgentID)
{
if ( Client.Self.GoHome() ) {
return "Teleport Home Succesful";
} else {
return "Teleport Home Failed";
}
}
}
}