diff options
Diffstat (limited to 'OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETPluginStructs.cs')
-rw-r--r-- | OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETPluginStructs.cs | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETPluginStructs.cs b/OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETPluginStructs.cs new file mode 100644 index 0000000..382f445 --- /dev/null +++ b/OpenSim/Region/Physics/BulletDotNETPlugin/BulletDotNETPluginStructs.cs | |||
@@ -0,0 +1,33 @@ | |||
1 | using System; | ||
2 | |||
3 | public enum StatusIndicators : int | ||
4 | { | ||
5 | Generic = 0, | ||
6 | Start = 1, | ||
7 | End = 2 | ||
8 | } | ||
9 | |||
10 | public struct sCollisionData | ||
11 | { | ||
12 | public uint ColliderLocalId; | ||
13 | public uint CollidedWithLocalId; | ||
14 | public int NumberOfCollisions; | ||
15 | public int CollisionType; | ||
16 | public int StatusIndicator; | ||
17 | public int lastframe; | ||
18 | } | ||
19 | |||
20 | [Flags] | ||
21 | public enum CollisionCategories : int | ||
22 | { | ||
23 | Disabled = 0, | ||
24 | Geom = 0x00000001, | ||
25 | Body = 0x00000002, | ||
26 | Space = 0x00000004, | ||
27 | Character = 0x00000008, | ||
28 | Land = 0x00000010, | ||
29 | Water = 0x00000020, | ||
30 | Wind = 0x00000040, | ||
31 | Sensor = 0x00000080, | ||
32 | Selected = 0x00000100 | ||
33 | } \ No newline at end of file | ||