14 lines
310 B
C#
14 lines
310 B
C#
///////////////////////////////////////////////////////////////////
|
|
//
|
|
// (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);
|
|
}
|