diff options
author | Teravus Ovares | 2007-12-07 23:21:32 +0000 |
---|---|---|
committer | Teravus Ovares | 2007-12-07 23:21:32 +0000 |
commit | 5f516c9fb20e8c061f7b634ceeb2b21286dfcd5e (patch) | |
tree | 33928fb162f8f7bddd26e19f343ec79e2734f7ad /OpenSim/Framework/sLLVector3.cs | |
parent | Enabled the TextureDownloadModule, so that hopefully I might get some feedbac... (diff) | |
download | opensim-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 'OpenSim/Framework/sLLVector3.cs')
-rw-r--r-- | OpenSim/Framework/sLLVector3.cs | 25 |
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 @@ | |||
1 | using System; | ||
2 | using libsecondlife; | ||
3 | |||
4 | |||
5 | namespace 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 | } | ||