Adding the Avination calling card interface

0.7.3-extended
Melanie 2012-03-29 00:34:28 +01:00 committed by Justin Clark-Casey (justincc)
parent bd5b1d4d48
commit ef77dc932b
1 changed files with 13 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
{
UUID CreateCallingCard(UUID userID, UUID creatorID, UUID folderID);
}
}