aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/ExportSerialiser/IFileSerialiser.cs
blob: 4d5e42b76859af1bf38ecd0bfa3c45bc3643b290 (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);
    }
}