diff options
author | Adam Frisby | 2007-06-21 17:08:21 +0000 |
---|---|---|
committer | Adam Frisby | 2007-06-21 17:08:21 +0000 |
commit | e93869c7a785a4f375685ffa33c913033ed1c85a (patch) | |
tree | abb5e2c58f8750a1bc05acf58716b6b025da4d15 /tools/mass test client/Commands/Stats/DilationCommand.cs | |
parent | Fixed the struct and null compare bug. (diff) | |
download | opensim-SC_OLD-e93869c7a785a4f375685ffa33c913033ed1c85a.zip opensim-SC_OLD-e93869c7a785a4f375685ffa33c913033ed1c85a.tar.gz opensim-SC_OLD-e93869c7a785a4f375685ffa33c913033ed1c85a.tar.bz2 opensim-SC_OLD-e93869c7a785a4f375685ffa33c913033ed1c85a.tar.xz |
* Importing Ming's mass test client
Diffstat (limited to 'tools/mass test client/Commands/Stats/DilationCommand.cs')
-rw-r--r-- | tools/mass test client/Commands/Stats/DilationCommand.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tools/mass test client/Commands/Stats/DilationCommand.cs b/tools/mass test client/Commands/Stats/DilationCommand.cs new file mode 100644 index 0000000..e6e0a4d --- /dev/null +++ b/tools/mass test client/Commands/Stats/DilationCommand.cs | |||
@@ -0,0 +1,22 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using libsecondlife; | ||
5 | using libsecondlife.Packets; | ||
6 | |||
7 | namespace libsecondlife.TestClient | ||
8 | { | ||
9 | public class DilationCommand : Command | ||
10 | { | ||
11 | public DilationCommand(TestClient testClient) | ||
12 | { | ||
13 | Name = "dilation"; | ||
14 | Description = "Shows time dilation for current sim."; | ||
15 | } | ||
16 | |||
17 | public override string Execute(string[] args, LLUUID fromAgentID) | ||
18 | { | ||
19 | return "Dilation is " + Client.Network.CurrentSim.Dilation.ToString(); | ||
20 | } | ||
21 | } | ||
22 | } \ No newline at end of file | ||