Change namespace on CallingCardModule and correct interface file placemant. Also ass OpenSource header

This commit is contained in:
Melanie
2012-03-29 01:13:08 +01:00
parent 93ac47f0d3
commit bd83676d6c
2 changed files with 29 additions and 2 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);
}
}