mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +00:00
20 lines
345 B
C++
20 lines
345 B
C++
#pragma once
|
|
|
|
// #include "V8World/Joint.h"
|
|
|
|
namespace RBX {
|
|
|
|
class Joint;
|
|
class Primitive;
|
|
|
|
class JointBuilder
|
|
{
|
|
public:
|
|
// static Joint* makeJoint(Primitive* p0, Primitive* p1, const CoordinateFrame& c0, const CoordinateFrame& c1, Joint::JointType jointType);
|
|
|
|
static Joint* canJoin(Primitive* p0, Primitive* p1);
|
|
};
|
|
|
|
} // namespace
|
|
|