~etc-pgh-launchpad/wildpockets/trunk

« back to all changes in this revision

Viewing changes to ode/contrib/DotNetManaged/Joint.h

  • Committer: etc-pgh-launchpad at cmu
  • Date: 2010-11-30 20:56:30 UTC
  • Revision ID: etc-pgh-launchpad@lists.andrew.cmu.edu-20101130205630-0blbkcz28ovjl8wj
Committing the Wild Pockets code base to Launchpad.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#pragma once
 
2
 
 
3
#include "JointGroup.h"
 
4
#include "World.h"
 
5
#include "Body.h"
 
6
 
 
7
namespace ODEManaged
 
8
{       
 
9
        __gc public class Joint
 
10
        {
 
11
        protected:
 
12
                //Constructor and Destructor Defenition
 
13
                Joint(void);
 
14
                ~Joint(void);
 
15
 
 
16
                //Public Methods
 
17
                dJointID Id(void);
 
18
 
 
19
                dJointID _id;   
 
20
 };
 
21
}