Adding the Avination calling card interface

0.7.4.1
Melanie 2012-03-29 00:34:28 +01:00
parent 532e3dad26
commit 5a82d939e6
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);
}
}