Formatting cleanup.

This commit is contained in:
Jeff Ames
2009-10-01 01:00:09 +09:00
parent 33515c75e4
commit ee205e7e81
223 changed files with 875 additions and 930 deletions

View File

@@ -29,13 +29,13 @@ using OpenMetaverse;
using OpenSim.Framework;
using OpenSim.Region.Framework.Scenes;
namespace OpenSim.Region.Framework.Interfaces
namespace OpenSim.Region.Framework.Interfaces
{
/// <summary>
/// Interface to a class that is capable of creating entities
/// </summary>
/// </summary>
public interface IEntityCreator
{
{
/// <summary>
/// The entities that this class is capable of creating. These match the PCode format.
/// </summary>
@@ -51,6 +51,6 @@ namespace OpenSim.Region.Framework.Interfaces
/// <param name="rot"></param>
/// <param name="shape"></param>
/// <returns>The entity created, or null if the creation failed</returns>
SceneObjectGroup CreateEntity(UUID ownerID, UUID groupID, Vector3 pos, Quaternion rot, PrimitiveBaseShape shape);
SceneObjectGroup CreateEntity(UUID ownerID, UUID groupID, Vector3 pos, Quaternion rot, PrimitiveBaseShape shape);
}
}