package com.mony.crazydriver.characters; import com.badlogic.gdx.graphics.g2d.Animation; public class Platform extends Character{ public Platform(Animation animation, float x, float y) { super(animation, x, y); } }