com.blastedstudios.gdxworld.plugin.mode.joint.IJointWindow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of GDXWorld Show documentation
Show all versions of GDXWorld Show documentation
Uploads all artifacts belonging to configuration ':archives'
The newest version!
package com.blastedstudios.gdxworld.plugin.mode.joint;
import net.xeoh.plugins.base.Plugin;
import com.badlogic.gdx.physics.box2d.JointDef.JointType;
import com.badlogic.gdx.scenes.scene2d.ui.Skin;
import com.blastedstudios.gdxworld.world.joint.GDXJoint;
public interface IJointWindow extends Plugin{
public JointType getJointType();
public T createJoint(T joint);
public BaseJointWindow createJointWindow(Skin skin, JointMode mode, T joint);
}