diff options
author | Adam Frisby | 2008-11-08 16:09:15 +0000 |
---|---|---|
committer | Adam Frisby | 2008-11-08 16:09:15 +0000 |
commit | 6d5248441d914231af36e4a378a270513b54b1f0 (patch) | |
tree | 5abc0e87a6f0353a60e89050ce3e26f4c6bbf4bc /OpenSim/Framework/Client | |
parent | Fix llParseString* to create LSLStrings. This makes llListFindList work (diff) | |
download | opensim-SC_OLD-6d5248441d914231af36e4a378a270513b54b1f0.zip opensim-SC_OLD-6d5248441d914231af36e4a378a270513b54b1f0.tar.gz opensim-SC_OLD-6d5248441d914231af36e4a378a270513b54b1f0.tar.bz2 opensim-SC_OLD-6d5248441d914231af36e4a378a270513b54b1f0.tar.xz |
* 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.
Diffstat (limited to 'OpenSim/Framework/Client')
-rw-r--r-- | OpenSim/Framework/Client/IClientCore.cs | 8 |
1 files changed, 8 insertions, 0 deletions
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 @@ | |||
1 | namespace OpenSim.Framework.Client | ||
2 | { | ||
3 | public interface IClientCore | ||
4 | { | ||
5 | bool TryGet<T>(out T iface); | ||
6 | T Get<T>(); | ||
7 | } | ||
8 | } \ No newline at end of file | ||