aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/ExportSerialiser/IFileSerialiser.cs
blob: e35c2f57e8818b19460fc719c14d8b02a8744732 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using System.Collections.Generic;
using System.Text;

using OpenSim.Region.Environment.Scenes;

namespace OpenSim.Region.Environment.Modules.ExportSerialiser
{
    interface IFileSerialiser
    {
        string WriteToFile(Scene scene, string dir);
    }
}