ColorRunner/core/src/de/samdev/colorrunner/game/world/entities/gameentities/floor/NoStateFloorTileEntity.java

26 lines
650 B
Java

package de.samdev.colorrunner.game.world.entities.gameentities.floor;
import com.badlogic.gdx.graphics.Texture;
import de.samdev.colorrunner.game.renderer.CRAssets;
import de.samdev.colorrunner.game.world.CRGameWorld;
import de.samdev.colorrunner.game.world.SwipeDirection;
public class NoStateFloorTileEntity extends FloorTileEntity {
public final SwipeDirection PHASE = SwipeDirection.UP;
public NoStateFloorTileEntity(CRGameWorld _owner, float x, float y) {
super(_owner, x, y);
}
@Override
public Texture getTexture() {
return CRAssets.TEX_FLOORTILE_STATELESS;
}
@Override
public SwipeDirection getPhase() {
return null;
}
}