From 9f25f70b248c37f9b112a83094cb471f2dbd31b2 Mon Sep 17 00:00:00 2001 From: MW Date: Sun, 10 Jun 2007 12:28:41 +0000 Subject: Messed up the renaming of the folder, so part one of the fix --- OpenSim/OpenSim.Reg/scripting/IScriptEntity.cs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 OpenSim/OpenSim.Reg/scripting/IScriptEntity.cs (limited to 'OpenSim/OpenSim.Reg/scripting/IScriptEntity.cs') diff --git a/OpenSim/OpenSim.Reg/scripting/IScriptEntity.cs b/OpenSim/OpenSim.Reg/scripting/IScriptEntity.cs new file mode 100644 index 0000000..abb789f --- /dev/null +++ b/OpenSim/OpenSim.Reg/scripting/IScriptEntity.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Text; +using libsecondlife; + +namespace OpenSim.Region.Scripting +{ + public interface IScriptReadonlyEntity + { + LLVector3 Pos { get; } + string Name { get; } + } + + public interface IScriptEntity + { + LLVector3 Pos { get; set; } + string Name { get; } + } +} -- cgit v1.1