From 6d5248441d914231af36e4a378a270513b54b1f0 Mon Sep 17 00:00:00 2001 From: Adam Frisby Date: Sat, 8 Nov 2008 16:09:15 +0000 Subject: * Implementing first of the 0.6 IClientAPI Changes * 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. --- OpenSim/Framework/Client/IClientCore.cs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 OpenSim/Framework/Client/IClientCore.cs (limited to 'OpenSim/Framework/Client') diff --git a/OpenSim/Framework/Client/IClientCore.cs b/OpenSim/Framework/Client/IClientCore.cs new file mode 100644 index 0000000..41f8f4b --- /dev/null +++ b/OpenSim/Framework/Client/IClientCore.cs @@ -0,0 +1,8 @@ +namespace OpenSim.Framework.Client +{ + public interface IClientCore + { + bool TryGet(out T iface); + T Get(); + } +} \ No newline at end of file -- cgit v1.1