aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/world/PhysicsEngine.cs
diff options
context:
space:
mode:
authorgareth2007-03-02 22:17:39 +0000
committergareth2007-03-02 22:17:39 +0000
commitcb55056e3bb0d34e51d8efa60cb8ef82484af900 (patch)
tree5bc1a97e7f8c1629dd99433c0751a77159fc3555 /src/world/PhysicsEngine.cs
parentr105 somehow got put in wrong place, so replacing files (diff)
downloadopensim-SC_OLD-cb55056e3bb0d34e51d8efa60cb8ef82484af900.zip
opensim-SC_OLD-cb55056e3bb0d34e51d8efa60cb8ef82484af900.tar.gz
opensim-SC_OLD-cb55056e3bb0d34e51d8efa60cb8ef82484af900.tar.bz2
opensim-SC_OLD-cb55056e3bb0d34e51d8efa60cb8ef82484af900.tar.xz
Began implementing basic physics engine plugin framework
Diffstat (limited to 'src/world/PhysicsEngine.cs')
-rw-r--r--src/world/PhysicsEngine.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/world/PhysicsEngine.cs b/src/world/PhysicsEngine.cs
new file mode 100644
index 0000000..5bc52de
--- /dev/null
+++ b/src/world/PhysicsEngine.cs
@@ -0,0 +1,21 @@
1using System;
2using System.Threading;
3using libsecondlife;
4using libsecondlife.Packets;
5using System.Collections.Generic;
6using System.Text;
7
8namespace OpenSim.world
9{
10 public class PhysicsEngine
11 {
12
13 public PhysicsEngine() {
14 }
15
16 public void Startup() {
17 Console.WriteLine("PhysicsEngine.cs:Startup() - DOING NOTHING, DUMMY FUNCTION!");
18 }
19
20 }
21}