diff options
author | gareth | 2007-03-02 22:17:39 +0000 |
---|---|---|
committer | gareth | 2007-03-02 22:17:39 +0000 |
commit | cb55056e3bb0d34e51d8efa60cb8ef82484af900 (patch) | |
tree | 5bc1a97e7f8c1629dd99433c0751a77159fc3555 /src/world/PhysicsEngine.cs | |
parent | r105 somehow got put in wrong place, so replacing files (diff) | |
download | opensim-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.cs | 21 |
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 @@ | |||
1 | using System; | ||
2 | using System.Threading; | ||
3 | using libsecondlife; | ||
4 | using libsecondlife.Packets; | ||
5 | using System.Collections.Generic; | ||
6 | using System.Text; | ||
7 | |||
8 | namespace 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 | } | ||