From 33b4cc1bb0eb225b43c9d7dc0c77467686912a71 Mon Sep 17 00:00:00 2001 From: Adam Frisby Date: Thu, 19 Jul 2007 01:08:26 +0000 Subject: * Added housekeeping comments, see mailing list in just a moment... --- OpenSim/Region/Environment/Scenes/SceneObject.cs | 22 +++------------------- 1 file changed, 3 insertions(+), 19 deletions(-) (limited to 'OpenSim/Region/Environment/Scenes/SceneObject.cs') diff --git a/OpenSim/Region/Environment/Scenes/SceneObject.cs b/OpenSim/Region/Environment/Scenes/SceneObject.cs index 9e8135f..294087f 100644 --- a/OpenSim/Region/Environment/Scenes/SceneObject.cs +++ b/OpenSim/Region/Environment/Scenes/SceneObject.cs @@ -43,30 +43,14 @@ namespace OpenSim.Region.Environment.Scenes private new Scene m_world; protected ulong m_regionHandle; - private bool physicsEnabled = false; - private PhysicsScene m_PhysScene; - private PhysicsActor m_PhysActor; + private bool physicsEnabled = false; // HOUSEKEEPING : Do we really need this? + private PhysicsScene m_PhysScene; // HOUSEKEEPING : Do we really need this? + private PhysicsActor m_PhysActor; // HOUSEKEEPING : Do we really need this? private EventManager m_eventManager; public bool isSelected = false; - public PhysicsScene PhysScene - { - get - { - return m_PhysScene; - } - } - - public PhysicsActor PhysActor - { - get - { - return m_PhysActor; - } - } - public LLUUID rootUUID { get -- cgit v1.1