Formatting cleanup.

This commit is contained in:
Jeff Ames
2008-05-16 01:22:11 +00:00
parent e25818d832
commit 65c5efe43b
261 changed files with 3718 additions and 3831 deletions

View File

@@ -31,7 +31,7 @@ using OpenSim.Region.Environment.Scenes;
namespace OpenSim.Region.Environment.Interfaces
{
public interface IAvatarFactory
public interface IAvatarFactory
{
bool TryGetAvatarAppearance(LLUUID avatarId, out AvatarAppearance appearance);
void UpdateDatabase(LLUUID userID, AvatarAppearance avatAppearance);

View File

@@ -28,7 +28,7 @@
using libsecondlife;
namespace OpenSim.Region.Environment.Interfaces
{
{
public interface IScenePermissions
{
}

View File

@@ -31,17 +31,17 @@ namespace OpenSim.Region.Environment.Interfaces
/// Interface for an object which can send texture information to a client
/// </summary>
public interface ITextureSender
{
{
/// <summary>
/// Are we in the process of sending the texture?
/// </summary>
bool Sending { get; set; }
/// <summary>
/// Has the texture send been cancelled?
/// </summary>
bool Cancel { get; set; }
/// <summary>
/// Update the non data properties of a texture request
/// </summary>
@@ -53,6 +53,6 @@ namespace OpenSim.Region.Environment.Interfaces
/// Send a texture packet to the client.
/// </summary>
/// <returns>True if the last packet has been sent, false otherwise.</returns>
bool SendTexturePacket();
bool SendTexturePacket();
}
}