aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IExtension.cs
diff options
context:
space:
mode:
authorJeff Ames2009-04-21 15:30:03 +0000
committerJeff Ames2009-04-21 15:30:03 +0000
commit13f5dd5f353c5ea5e86944af3dbaa739c8be1a8a (patch)
treedb2753c11ade99bfad52a28c96fc16520df865b1 /OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IExtension.cs
parent* Add the ability to update profiles via the cache, so that cached profiles d... (diff)
downloadopensim-SC_OLD-13f5dd5f353c5ea5e86944af3dbaa739c8be1a8a.zip
opensim-SC_OLD-13f5dd5f353c5ea5e86944af3dbaa739c8be1a8a.tar.gz
opensim-SC_OLD-13f5dd5f353c5ea5e86944af3dbaa739c8be1a8a.tar.bz2
opensim-SC_OLD-13f5dd5f353c5ea5e86944af3dbaa739c8be1a8a.tar.xz
Update svn properties.
Diffstat (limited to 'OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IExtension.cs')
-rw-r--r--OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IExtension.cs26
1 files changed, 13 insertions, 13 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IExtension.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IExtension.cs
index b58e600..91c696f 100644
--- a/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IExtension.cs
+++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/Interfaces/IExtension.cs
@@ -1,13 +1,13 @@
1using System; 1using System;
2using System.Collections.Generic; 2using System.Collections.Generic;
3using System.Text; 3using System.Text;
4 4
5namespace OpenSim.Region.OptionalModules.Scripting.Minimodule.Interfaces 5namespace OpenSim.Region.OptionalModules.Scripting.Minimodule.Interfaces
6{ 6{
7 public interface IExtension 7 public interface IExtension
8 { 8 {
9 T Get<T>(); 9 T Get<T>();
10 bool TryGet<T>(out T extension); 10 bool TryGet<T>(out T extension);
11 bool Has<T>(); 11 bool Has<T>();
12 } 12 }
13} 13}