using System.Collections; using System.Collections.Generic; using UnityEngine; public class MechanicalJoint : Block { public override void setupBlock() { // unimplemented as it's a Joint } public override void simulate() { throw new System.NotImplementedException(); } }