blob: a19ba8dfd334640af7e4a64fd7cfcc3e59c75010 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenSim.Region.Environment.Interfaces
{
public interface IXfer
{
bool AddNewFile(string fileName, byte[] data);
}
}
|