blob: d1a4d8eb2db8f998802c17d1a97f03c766bc9d07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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);
}
|