aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/ode-0.9/contrib/DotNetManaged/JointGroup.h
blob: b62ced0f641e3e97705fe2adc7a190c0050d7d50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#pragma once

namespace ODEManaged
{
	__gc public class JointGroup
	{
	public:

		//Constructors

			JointGroup(void);
			JointGroup(int maxSize);
		

		//Destructor

			~JointGroup(void);


		//Methods
		
			dJointGroupID Id(void);
			void Create(int maxSize);
			void Empty(void);

		
		private:

			dJointGroupID _id;

	};

}