* Minor MRM Cleanup

* Interfaces now live in Interfaces subdirectory. 
* Namespace does not yet reflect this change.
* Final namespace for MRMs will probably sit somewhere around OpenSim.Extend.MRM[?]
This commit is contained in:
Adam Frisby
2009-04-11 10:21:04 +00:00
parent 988737b182
commit b8619386eb
14 changed files with 662 additions and 614 deletions

View File

@@ -0,0 +1,12 @@
using System.Drawing;
using OpenMetaverse;
namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
{
public interface IGraphics
{
UUID SaveBitmap(Bitmap data);
UUID SaveBitmap(Bitmap data, bool lossless, bool temporary);
Bitmap LoadBitmap(UUID assetID);
}
}