* Committing shell of a whole-region serialiser. This is not complete and will be worked on more over the next few days. Undocumented/trusted. Use at own risk, etc etc.

This commit is contained in:
Adam Frisby
2008-04-15 04:26:39 +00:00
parent 0b4a8191a1
commit 00dbca468a
3 changed files with 188 additions and 0 deletions

View File

@@ -0,0 +1,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);
}
}