Files
JuegoSim/Assets/_Project/Scripts/Code/BlocksLayer/MechanicalJoint.cs
T
2026-07-21 08:56:10 +03:00

17 lines
313 B
C#

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();
}
}