Add an interface for a region's user account cache

This commit is contained in:
Melanie
2011-01-27 02:58:14 +01:00
parent 307a2c61ef
commit dd1980c24c
4 changed files with 16 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
///////////////////////////////////////////////////////////////////
//
// (c) Careminster Limited, Melanie Thielker and the Meta7 Team
//
// This file is not open source. All rights reserved
//
using OpenSim.Region.Framework.Scenes;
public interface IUserAccountCacheModule
{
void Remove(string name);
}