In the original c++ version of sfml, i used a class called anim that inherit from Drawable.
Now it seems as if i have to implement abstract methods (as Drawable is abstract) such as:
public abstract Vector2 TransformToGlobal(Vector2 point);
public abstract Vector2 TransformToLocal(Vector2 point);
How do i use Drawable now, without having to implement those methods?