mirror of
https://github.com/Ragora/T2-CPP.git
synced 2026-01-19 18:14:44 +00:00
16 lines
232 B
C++
16 lines
232 B
C++
/*
|
|
* CRigidBody.h
|
|
* Rigid Body Nodes for Tribes 2
|
|
* Copyright (c) 2013 Robert MacGregor
|
|
*/
|
|
|
|
#include <stdafx.h>
|
|
|
|
class CRigidBody
|
|
{
|
|
public:
|
|
CRigidBody(btRigidBody *body);
|
|
~CRigidBody(void);
|
|
private:
|
|
btRigidBody *rigid_body;
|
|
}; |