diff options
author | Jeff Ames | 2009-04-06 14:36:44 +0000 |
---|---|---|
committer | Jeff Ames | 2009-04-06 14:36:44 +0000 |
commit | 465f1df5923e82c0471aac6b771fb4b7f76d3cac (patch) | |
tree | 1c63a73bcdc71534945113df5828502381ac5134 /OpenSim/Region/OptionalModules/Scripting/Minimodule/IObject.cs | |
parent | Update svn properties. (diff) | |
download | opensim-SC-465f1df5923e82c0471aac6b771fb4b7f76d3cac.zip opensim-SC-465f1df5923e82c0471aac6b771fb4b7f76d3cac.tar.gz opensim-SC-465f1df5923e82c0471aac6b771fb4b7f76d3cac.tar.bz2 opensim-SC-465f1df5923e82c0471aac6b771fb4b7f76d3cac.tar.xz |
Add copyright headers, formatting cleanup.
Diffstat (limited to 'OpenSim/Region/OptionalModules/Scripting/Minimodule/IObject.cs')
-rw-r--r-- | OpenSim/Region/OptionalModules/Scripting/Minimodule/IObject.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/IObject.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/IObject.cs index 3636544..20d8e54 100644 --- a/OpenSim/Region/OptionalModules/Scripting/Minimodule/IObject.cs +++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/IObject.cs | |||
@@ -1,4 +1,4 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (c) Contributors, http://opensimulator.org/ | 2 | * Copyright (c) Contributors, http://opensimulator.org/ |
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | 3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. |
4 | * | 4 | * |
@@ -44,13 +44,13 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule | |||
44 | /// <example> | 44 | /// <example> |
45 | /// IObject deleteMe = World.Objects[0]; | 45 | /// IObject deleteMe = World.Objects[0]; |
46 | /// | 46 | /// |
47 | /// if(deleteMe.Exists) { | 47 | /// if (deleteMe.Exists) { |
48 | /// deleteMe.Say("Hello, I still exist!"); | 48 | /// deleteMe.Say("Hello, I still exist!"); |
49 | /// } | 49 | /// } |
50 | /// | 50 | /// |
51 | /// World.Objects.Remove(deleteMe); | 51 | /// World.Objects.Remove(deleteMe); |
52 | /// | 52 | /// |
53 | /// if(!deleteMe.Exists) { | 53 | /// if (!deleteMe.Exists) { |
54 | /// Host.Console.Info("I was deleted"); | 54 | /// Host.Console.Info("I was deleted"); |
55 | /// } | 55 | /// } |
56 | /// </example> | 56 | /// </example> |