aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/Manager/PhysicsScene.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Physics/Manager/PhysicsScene.cs')
-rw-r--r--OpenSim/Region/Physics/Manager/PhysicsScene.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/Manager/PhysicsScene.cs b/OpenSim/Region/Physics/Manager/PhysicsScene.cs
index cfede55..5274f3b 100644
--- a/OpenSim/Region/Physics/Manager/PhysicsScene.cs
+++ b/OpenSim/Region/Physics/Manager/PhysicsScene.cs
@@ -71,6 +71,9 @@ namespace OpenSim.Region.Physics.Manager
71 All = 0x3f 71 All = 0x3f
72 } 72 }
73 73
74 public delegate void RequestAssetDelegate(UUID assetID, AssetReceivedDelegate callback);
75 public delegate void AssetReceivedDelegate(AssetBase asset);
76
74 /// <summary> 77 /// <summary>
75 /// Contact result from a raycast. 78 /// Contact result from a raycast.
76 /// </summary> 79 /// </summary>
@@ -103,6 +106,8 @@ namespace OpenSim.Region.Physics.Manager
103 get { return new NullPhysicsScene(); } 106 get { return new NullPhysicsScene(); }
104 } 107 }
105 108
109 public RequestAssetDelegate RequestAssetMethod { private get; set; }
110
106 public virtual void TriggerPhysicsBasedRestart() 111 public virtual void TriggerPhysicsBasedRestart()
107 { 112 {
108 physicsCrash handler = OnPhysicsCrash; 113 physicsCrash handler = OnPhysicsCrash;