package de.samdev.colorrunner.game.world.map.provider; import com.badlogic.gdx.math.Rectangle; import de.samdev.colorrunner.game.world.CRGameWorld; public abstract class MapProvider { public abstract void init(CRGameWorld world); public abstract void update(CRGameWorld world, Rectangle player); }