diff options
author | lbsa71 | 2007-09-18 09:59:33 +0000 |
---|---|---|
committer | lbsa71 | 2007-09-18 09:59:33 +0000 |
commit | a963b3057bdc80fc403e2b8402d0666c3d3f5c97 (patch) | |
tree | e2395d69fd3a7ef9fd4002498d9ebad914235645 /OpenSim/Framework/General/NullClientAPI.cs | |
parent | * Merged ClientViewBase into ClientView for great justice (diff) | |
download | opensim-SC_OLD-a963b3057bdc80fc403e2b8402d0666c3d3f5c97.zip opensim-SC_OLD-a963b3057bdc80fc403e2b8402d0666c3d3f5c97.tar.gz opensim-SC_OLD-a963b3057bdc80fc403e2b8402d0666c3d3f5c97.tar.bz2 opensim-SC_OLD-a963b3057bdc80fc403e2b8402d0666c3d3f5c97.tar.xz |
* Replaced usage of ClientView with IClientAPI
* Some propertification and hideousness of fields.
Diffstat (limited to 'OpenSim/Framework/General/NullClientAPI.cs')
-rw-r--r-- | OpenSim/Framework/General/NullClientAPI.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Framework/General/NullClientAPI.cs b/OpenSim/Framework/General/NullClientAPI.cs index cf7e448..2b6de9e 100644 --- a/OpenSim/Framework/General/NullClientAPI.cs +++ b/OpenSim/Framework/General/NullClientAPI.cs | |||
@@ -167,6 +167,14 @@ namespace OpenSim.Framework | |||
167 | public void SendViewerTime(int phase) { } | 167 | public void SendViewerTime(int phase) { } |
168 | public void SendAvatarProperties(LLUUID avatarID, string aboutText, string bornOn, string charterMember, string flAbout, uint flags, LLUUID flImageID, LLUUID imageID, string profileURL, LLUUID partnerID) { } | 168 | public void SendAvatarProperties(LLUUID avatarID, string aboutText, string bornOn, string charterMember, string flAbout, uint flags, LLUUID flImageID, LLUUID imageID, string profileURL, LLUUID partnerID) { } |
169 | public void SetDebug(int newDebug) { } | 169 | public void SetDebug(int newDebug) { } |
170 | |||
171 | public void InPacket(Packet NewPack) | ||
172 | { | ||
173 | } | ||
174 | |||
175 | public void ConnectionClosed() | ||
176 | { | ||
177 | } | ||
170 | } | 178 | } |
171 | } | 179 | } |
172 | 180 | ||