2007-05-27 18:52:42 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text;
|
|
|
|
using libsecondlife;
|
|
|
|
using OpenSim.Framework.Types;
|
|
|
|
|
|
|
|
namespace OpenSim.Framework.Interfaces
|
|
|
|
{
|
|
|
|
public interface IWorld
|
|
|
|
{
|
2007-05-29 09:16:18 +00:00
|
|
|
void AddNewAvatar(IClientAPI remoteClient, LLUUID agentID, bool child);
|
|
|
|
void RemoveAvatar(LLUUID agentID);
|
2007-05-27 18:52:42 +00:00
|
|
|
RegionInfo GetRegionInfo();
|
|
|
|
}
|
|
|
|
}
|