Files
libremetaverse/Programs/examples/TestClient/Commands/Land/GridMapCommand.cs
2021-12-09 14:23:33 -06:00

23 lines
617 B
C#

namespace OpenMetaverse.TestClient
{
public class GridMapCommand : Command
{
public GridMapCommand(TestClient testClient)
{
Name = "gridmap";
Description = "Downloads all visible information about the grid map";
Category = CommandCategory.Simulator;
}
public override string Execute(string[] args, UUID fromAgentID)
{
//if (args.Length < 1)
// return "";
Client.Grid.RequestMainlandSims(GridLayerType.Objects);
return "Sent.";
}
}
}