diff options
author | Teravus Ovares | 2008-09-06 07:52:41 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-09-06 07:52:41 +0000 |
commit | 7d89e122930be39e84a6d174548fa2d12ac0484a (patch) | |
tree | e5aa5752f988a9aba2a969f49e5e208985eda80c /OpenSim/Framework/LandUpdateArgs.cs | |
parent | * minor: speculatively try a change to bamboo.build to see if this generates ... (diff) | |
download | opensim-SC_OLD-7d89e122930be39e84a6d174548fa2d12ac0484a.zip opensim-SC_OLD-7d89e122930be39e84a6d174548fa2d12ac0484a.tar.gz opensim-SC_OLD-7d89e122930be39e84a6d174548fa2d12ac0484a.tar.bz2 opensim-SC_OLD-7d89e122930be39e84a6d174548fa2d12ac0484a.tar.xz |
* This is the fabled LibOMV update with all of the libOMV types from JHurliman
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle.
* This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big!
* Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/LandUpdateArgs.cs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/OpenSim/Framework/LandUpdateArgs.cs b/OpenSim/Framework/LandUpdateArgs.cs index 000ae53..0fed711 100644 --- a/OpenSim/Framework/LandUpdateArgs.cs +++ b/OpenSim/Framework/LandUpdateArgs.cs | |||
@@ -1,17 +1,17 @@ | |||
1 | using System; | 1 | using System; |
2 | using libsecondlife; | 2 | using OpenMetaverse; |
3 | 3 | ||
4 | namespace OpenSim.Framework | 4 | namespace OpenSim.Framework |
5 | { | 5 | { |
6 | public class LandUpdateArgs : EventArgs | 6 | public class LandUpdateArgs : EventArgs |
7 | { | 7 | { |
8 | public LLUUID AuthBuyerID; | 8 | public UUID AuthBuyerID; |
9 | public Parcel.ParcelCategory Category; | 9 | public Parcel.ParcelCategory Category; |
10 | public string Desc; | 10 | public string Desc; |
11 | public LLUUID GroupID; | 11 | public UUID GroupID; |
12 | public byte LandingType; | 12 | public byte LandingType; |
13 | public byte MediaAutoScale; | 13 | public byte MediaAutoScale; |
14 | public LLUUID MediaID; | 14 | public UUID MediaID; |
15 | public string MediaURL; | 15 | public string MediaURL; |
16 | public string MusicURL; | 16 | public string MusicURL; |
17 | public string Name; | 17 | public string Name; |
@@ -19,8 +19,8 @@ namespace OpenSim.Framework | |||
19 | public float PassHours; | 19 | public float PassHours; |
20 | public int PassPrice; | 20 | public int PassPrice; |
21 | public int SalePrice; | 21 | public int SalePrice; |
22 | public LLUUID SnapshotID; | 22 | public UUID SnapshotID; |
23 | public LLVector3 UserLocation; | 23 | public Vector3 UserLocation; |
24 | public LLVector3 UserLookAt; | 24 | public Vector3 UserLookAt; |
25 | } | 25 | } |
26 | } \ No newline at end of file | 26 | } |