diff options
author | Adam Frisby | 2008-04-29 14:04:55 +0000 |
---|---|---|
committer | Adam Frisby | 2008-04-29 14:04:55 +0000 |
commit | 375163a6fece8b3a57c7555246abe8338223a599 (patch) | |
tree | 163001ca96a4b4d08589e9772f78510677d5d0dc /OpenSim/Framework/GridInstantMessage.cs | |
parent | Patch from Melanie: 0001087: Crash to bash de-linking objects. Thanks Melanie! (diff) | |
download | opensim-SC-375163a6fece8b3a57c7555246abe8338223a599.zip opensim-SC-375163a6fece8b3a57c7555246abe8338223a599.tar.gz opensim-SC-375163a6fece8b3a57c7555246abe8338223a599.tar.bz2 opensim-SC-375163a6fece8b3a57c7555246abe8338223a599.tar.xz |
* Spring cleaning.
* Added new generic "Location" class to handle 2D integer locations. Going to use it to replace all RegionHandle and X,Y coordinate references throughout the entire project. You have been warned.
Diffstat (limited to 'OpenSim/Framework/GridInstantMessage.cs')
-rw-r--r-- | OpenSim/Framework/GridInstantMessage.cs | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/OpenSim/Framework/GridInstantMessage.cs b/OpenSim/Framework/GridInstantMessage.cs index 77e5460..08c5f28 100644 --- a/OpenSim/Framework/GridInstantMessage.cs +++ b/OpenSim/Framework/GridInstantMessage.cs | |||
@@ -32,16 +32,15 @@ namespace OpenSim.Framework | |||
32 | [Serializable] | 32 | [Serializable] |
33 | public class GridInstantMessage | 33 | public class GridInstantMessage |
34 | { | 34 | { |
35 | public byte[] binaryBucket; | ||
36 | public byte dialog; | ||
35 | public Guid fromAgentID; | 37 | public Guid fromAgentID; |
38 | public string fromAgentName; | ||
36 | public Guid fromAgentSession; | 39 | public Guid fromAgentSession; |
37 | public Guid toAgentID; | 40 | public bool fromGroup; |
38 | public Guid imSessionID; | 41 | public Guid imSessionID; |
39 | public uint timestamp; | ||
40 | public string fromAgentName; | ||
41 | 42 | ||
42 | public string message; | 43 | public string message; |
43 | public byte dialog; | ||
44 | public bool fromGroup; | ||
45 | public byte offline; | 44 | public byte offline; |
46 | 45 | ||
47 | public uint ParentEstateID; | 46 | public uint ParentEstateID; |
@@ -49,11 +48,11 @@ namespace OpenSim.Framework | |||
49 | public sLLVector3 Position; | 48 | public sLLVector3 Position; |
50 | 49 | ||
51 | public Guid RegionID; | 50 | public Guid RegionID; |
52 | 51 | public uint timestamp; | |
53 | public byte[] binaryBucket; | 52 | public Guid toAgentID; |
54 | 53 | ||
55 | public GridInstantMessage() | 54 | public GridInstantMessage() |
56 | { | 55 | { |
57 | } | 56 | } |
58 | } | 57 | } |
59 | } | 58 | } \ No newline at end of file |