mirror of
https://github.com/opensim/opensim.git
synced 2026-07-26 01:57:42 +08:00
* 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[?]
13 lines
316 B
C#
13 lines
316 B
C#
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);
|
|
}
|
|
}
|