* HttpRequestSignature uses regular expressions for the path now
* Added a simplified HttpListener.AddHandler() overload * Lots of improvements in ExtensionLoader, simplified interface * Updated Simian to latest ExtensionLoader git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@2316 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
@@ -6,20 +6,21 @@ using OpenMetaverse.Packets;
|
||||
|
||||
namespace Simian.Extensions
|
||||
{
|
||||
public class ParcelManager : IExtension, IParcelProvider
|
||||
public class ParcelManager : IExtension<Simian>, IParcelProvider
|
||||
{
|
||||
Simian server;
|
||||
Dictionary<int, Parcel> parcels = new Dictionary<int, Parcel>();
|
||||
/// <summary>X,Y ordered 2D array of the parcelIDs for each sq. meter of a simulator</summary>
|
||||
int[] parcelOverlay = new int[64 * 64];
|
||||
|
||||
public ParcelManager(Simian server)
|
||||
public ParcelManager()
|
||||
{
|
||||
this.server = server;
|
||||
}
|
||||
|
||||
public void Start()
|
||||
public void Start(Simian server)
|
||||
{
|
||||
this.server = server;
|
||||
|
||||
lock (parcels)
|
||||
parcels.Clear();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user