aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/ode-0.9/contrib/DotNetManaged/Joint.h
blob: d9ab254d3776b86c1480e1aa2b852d5b6e4ae08c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#include "JointGroup.h"
#include "World.h"
#include "Body.h"

namespace ODEManaged
{	
	__gc public class Joint
	{
	protected:
		//Constructor and Destructor Defenition
		Joint(void);
		~Joint(void);

		//Public Methods
		dJointID Id(void);

		dJointID _id;	
 };
}