blob: 7482ec0ba5671273e505b2522fdc11865701c947 (
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);
}
}
|