Ported Bullet to the mod loader system; needs further work

This commit is contained in:
Robert MacGregor 2015-06-27 14:01:25 -04:00
parent 527474ff24
commit 06810b6cca
353 changed files with 80265 additions and 0 deletions

View file

@ -0,0 +1,16 @@
/*
* CRigidBody.cpp
* Rigid Body Nodes for Tribes 2
* Copyright (c) 2013 Robert MacGregor
*/
#include <stdafx.h>
#include <CRigidBody.h>
CRigidBody::CRigidBody(btRigidBody *body) : rigid_body(body)
{
}
CRigidBody::~CRigidBody(void)
{
}