mirror of
https://github.com/opensim/opensim.git
synced 2026-05-15 11:25:39 +08:00
* Introducing IClientCore - this will be the key replacement for IClientAPI in the long run, it has a very minimal set of methods designed to allow you to access specialist API's. * See https://lists.berlios.de/pipermail/opensim-dev/2008-September/003049.html for the early discussion on this.
8 lines
150 B
C#
8 lines
150 B
C#
namespace OpenSim.Framework.Client
|
|
{
|
|
public interface IClientCore
|
|
{
|
|
bool TryGet<T>(out T iface);
|
|
T Get<T>();
|
|
}
|
|
} |