aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Interfaces/ITextureSender.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces/ITextureSender.cs')
-rw-r--r--OpenSim/Region/Environment/Interfaces/ITextureSender.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/ITextureSender.cs b/OpenSim/Region/Environment/Interfaces/ITextureSender.cs
index 1b9e4eb..ece1953 100644
--- a/OpenSim/Region/Environment/Interfaces/ITextureSender.cs
+++ b/OpenSim/Region/Environment/Interfaces/ITextureSender.cs
@@ -31,17 +31,17 @@ namespace OpenSim.Region.Environment.Interfaces
31 /// Interface for an object which can send texture information to a client 31 /// Interface for an object which can send texture information to a client
32 /// </summary> 32 /// </summary>
33 public interface ITextureSender 33 public interface ITextureSender
34 { 34 {
35 /// <summary> 35 /// <summary>
36 /// Are we in the process of sending the texture? 36 /// Are we in the process of sending the texture?
37 /// </summary> 37 /// </summary>
38 bool Sending { get; set; } 38 bool Sending { get; set; }
39 39
40 /// <summary> 40 /// <summary>
41 /// Has the texture send been cancelled? 41 /// Has the texture send been cancelled?
42 /// </summary> 42 /// </summary>
43 bool Cancel { get; set; } 43 bool Cancel { get; set; }
44 44
45 /// <summary> 45 /// <summary>
46 /// Update the non data properties of a texture request 46 /// Update the non data properties of a texture request
47 /// </summary> 47 /// </summary>
@@ -53,6 +53,6 @@ namespace OpenSim.Region.Environment.Interfaces
53 /// Send a texture packet to the client. 53 /// Send a texture packet to the client.
54 /// </summary> 54 /// </summary>
55 /// <returns>True if the last packet has been sent, false otherwise.</returns> 55 /// <returns>True if the last packet has been sent, false otherwise.</returns>
56 bool SendTexturePacket(); 56 bool SendTexturePacket();
57 } 57 }
58} 58}