aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Client/MXP/MXPUtil.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Client/MXP/MXPUtil.cs')
-rw-r--r--OpenSim/Client/MXP/MXPUtil.cs30
1 files changed, 15 insertions, 15 deletions
diff --git a/OpenSim/Client/MXP/MXPUtil.cs b/OpenSim/Client/MXP/MXPUtil.cs
index 7ca4533..674842b 100644
--- a/OpenSim/Client/MXP/MXPUtil.cs
+++ b/OpenSim/Client/MXP/MXPUtil.cs
@@ -1,15 +1,15 @@
1using System; 1using System;
2using System.Collections.Generic; 2using System.Collections.Generic;
3using System.Text; 3using System.Text;
4using OpenMetaverse; 4using OpenMetaverse;
5 5
6namespace OpenSim.Client.MXP 6namespace OpenSim.Client.MXP
7{ 7{
8 static class MXPUtil 8 static class MXPUtil
9 { 9 {
10 public static string GenerateMXPURL(string server, int port, UUID bubbleID, Vector3 location) 10 public static string GenerateMXPURL(string server, int port, UUID bubbleID, Vector3 location)
11 { 11 {
12 return string.Format("mxp://{0}:{1}/{2}/{3}", server, port, bubbleID.Guid, location); 12 return string.Format("mxp://{0}:{1}/{2}/{3}", server, port, bubbleID.Guid, location);
13 } 13 }
14 } 14 }
15} 15}