com.blastedstudios.gdxworld.plugin.mode.quest.ManifestationTable 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.quest;
import com.badlogic.gdx.math.Vector2;
import com.badlogic.gdx.scenes.scene2d.ui.Skin;
import com.badlogic.gdx.scenes.scene2d.ui.Table;
import com.blastedstudios.gdxworld.world.quest.manifestation.AbstractQuestManifestation;
public abstract class ManifestationTable extends Table{
public ManifestationTable(final Skin skin){
super(skin);
}
public abstract AbstractQuestManifestation apply();
public void touched(Vector2 coordinates){}
}