* Added IParcelProvider and ParcelManager that provide very basic parcel information

* More sane default flags in Simian RegionHandshake

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@2234 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2008-09-22 15:11:39 +00:00
parent 8e70446f3c
commit 858b230e6b
6 changed files with 296 additions and 10 deletions

View File

@@ -0,0 +1,10 @@
using System;
using OpenMetaverse;
namespace Simian
{
public interface IParcelProvider
{
void SendParcelOverlay(Agent agent);
}
}