Files
libremetaverse/Programs/Simian/Interfaces/IAccountProvider.cs
John Hurliman 70fe1f8f2a [Simian]
* Initial framework support for multiple simulators. Currently only the first region config is loaded, but the framework is there
* Big reorganization of config and data files
* Started renaming extensions that handle LLUDP packets to start with the LL prefix. Work in progress
* Initial SSL support

git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2482 52acb1d6-8a22-11de-b505-999d5b087335
2009-03-12 23:02:42 +00:00

15 lines
382 B
C#

using System;
using OpenMetaverse;
namespace Simian
{
public interface IAccountProvider
{
void AddAccount(AgentInfo agent);
bool RemoveAccount(UUID agentID);
AgentInfo CreateInstance(UUID agentID);
bool TryGetAccount(UUID agentID, out AgentInfo agent);
bool TryGetAccount(string fullName, out AgentInfo agent);
}
}