mirror of
https://github.com/opensim/opensim.git
synced 2026-07-13 19:14:51 +08:00
17 lines
450 B
C#
17 lines
450 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using OpenSim.Framework.Types;
|
|
using libsecondlife;
|
|
|
|
namespace OpenSim.Framework.Interfaces
|
|
{
|
|
public interface IAssetProvider : IPlugin
|
|
{
|
|
AssetBase FetchAsset(LLUUID uuid);
|
|
void CreateAsset(AssetBase asset);
|
|
void UpdateAsset(AssetBase asset);
|
|
bool ExistsAsset(LLUUID uuid);
|
|
void CommitAssets(); // force a sync to the database
|
|
}
|
|
} |