Files
watrbx-game-engine/App/v8world/JointBuilder.h
T
2025-10-28 14:05:46 -04:00

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