mirror of
https://github.com/Ragora/T2-CPP.git
synced 2026-01-20 10:34:45 +00:00
16 lines
241 B
C++
16 lines
241 B
C++
/*
|
|
* 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)
|
|
{
|
|
} |