I always don\'t call super() when I extends Sprite. But doesn\'t not calling super() cause any problem? Till now, I don\'t have any problem and I h
not calling super()
You can safetly exclude the call to the base constructor. If you do not call super() in the constructor, the compiler will add a call to the base constructor with no arguments.
super()