aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/sLLVector3.cs
diff options
context:
space:
mode:
authorTeravus Ovares2007-12-07 23:21:32 +0000
committerTeravus Ovares2007-12-07 23:21:32 +0000
commit5f516c9fb20e8c061f7b634ceeb2b21286dfcd5e (patch)
tree33928fb162f8f7bddd26e19f343ec79e2734f7ad /OpenSim/Framework/sLLVector3.cs
parentEnabled the TextureDownloadModule, so that hopefully I might get some feedbac... (diff)
downloadopensim-SC_OLD-5f516c9fb20e8c061f7b634ceeb2b21286dfcd5e.zip
opensim-SC_OLD-5f516c9fb20e8c061f7b634ceeb2b21286dfcd5e.tar.gz
opensim-SC_OLD-5f516c9fb20e8c061f7b634ceeb2b21286dfcd5e.tar.bz2
opensim-SC_OLD-5f516c9fb20e8c061f7b634ceeb2b21286dfcd5e.tar.xz
* All remoting calls are now using Serializable values
* There's still goofyness though, because other regions are denying child agent avatar. * Still more debugging required.
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/sLLVector3.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/OpenSim/Framework/sLLVector3.cs b/OpenSim/Framework/sLLVector3.cs
new file mode 100644
index 0000000..25a9015
--- /dev/null
+++ b/OpenSim/Framework/sLLVector3.cs
@@ -0,0 +1,25 @@
1using System;
2using libsecondlife;
3
4
5namespace OpenSim.Framework
6{
7 [Serializable]
8 public class sLLVector3
9 {
10 public sLLVector3()
11 {
12
13 }
14 public sLLVector3(LLVector3 v)
15 {
16 x = v.X;
17 y = v.Y;
18 z = v.Z;
19 }
20 public float x;
21 public float y;
22 public float z;
23 }
24
25}