mirror of
https://github.com/opensim/opensim.git
synced 2026-06-02 08:35:35 +08:00
12 lines
214 B
C#
12 lines
214 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenSim.Region.Environment.Interfaces
|
|
{
|
|
public interface IXfer
|
|
{
|
|
bool AddNewFile(string fileName, byte[] data);
|
|
}
|
|
}
|