mirror of
https://github.com/opensim/opensim.git
synced 2026-06-03 00:46:33 +08:00
14 lines
276 B
C#
14 lines
276 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenSim.Region.OptionalModules.Scripting.Minimodule.Interfaces
|
|
{
|
|
public interface IExtension
|
|
{
|
|
T Get<T>();
|
|
bool TryGet<T>(out T extension);
|
|
bool Has<T>();
|
|
}
|
|
}
|