From 8f0b03597b0bc8ea6873af9a55495407fae1ec56 Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Wed, 19 Sep 2007 00:30:55 +0000 Subject: * Modernized ScriptManager to new interface-based module calls. * 'remove redundant this qualifier' ftw --- .../Environment/Scenes/Scripting/NullScriptHost.cs | 28 ++++++++++++---------- 1 file changed, 16 insertions(+), 12 deletions(-) (limited to 'OpenSim/Region/Environment/Scenes/Scripting/NullScriptHost.cs') diff --git a/OpenSim/Region/Environment/Scenes/Scripting/NullScriptHost.cs b/OpenSim/Region/Environment/Scenes/Scripting/NullScriptHost.cs index 875e4cb..6876cfb 100644 --- a/OpenSim/Region/Environment/Scenes/Scripting/NullScriptHost.cs +++ b/OpenSim/Region/Environment/Scenes/Scripting/NullScriptHost.cs @@ -1,14 +1,13 @@ -using System; -using System.Collections.Generic; -using System.Text; -using libsecondlife; - +using System; +using Axiom.Math; +using libsecondlife; + namespace OpenSim.Region.Environment.Scenes.Scripting { public class NullScriptHost : IScriptHost - { - - LLVector3 m_pos = new LLVector3( 128, 128, 30 ); + { + private LLVector3 m_pos = new LLVector3(128, 128, 30); + public string Name { get { return "Object"; } @@ -39,18 +38,23 @@ namespace OpenSim.Region.Environment.Scenes.Scripting } public LLUUID ObjectOwner - { get { return LLUUID.Zero; } } + { + get { return LLUUID.Zero; } + } - public LLUUID ObjectCreator { get { return LLUUID.Zero; } } + public LLUUID ObjectCreator + { + get { return LLUUID.Zero; } + } public LLVector3 AbsolutePosition { get { return m_pos; } } - public void SetText(string text, Axiom.Math.Vector3 color, double alpha) + public void SetText(string text, Vector3 color, double alpha) { Console.WriteLine("Tried to SetText [{0}] on NullScriptHost", text); } } -} +} \ No newline at end of file -- cgit v1.1