Add the interface needed to revive calling cards

This commit is contained in:
Melanie
2010-12-07 03:08:48 +01:00
parent b325721d6f
commit a4f7937eb3
2 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Text;
using OpenMetaverse;
using OpenSim.Framework;
namespace OpenSim.Framework
{
public interface ICallingCardModule
{
void CreateCallingCard(UUID userID, UUID creatorID, UUID folderID);
}
}