Adding the Avination calling card interface

This commit is contained in:
Melanie
2012-03-29 00:34:28 +01:00
parent 532e3dad26
commit 5a82d939e6

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);
}
}