ColorRunner/core/src/de/samdev/colorrunner/game/world/map/provider/MapProvider.java

13 lines
311 B
Java

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