Back to project page killingspree.
The source code is released under:
MIT License
If you think the Android project killingspree listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.sillygames.killingSpree.screens; //from w w w .j a v a2 s . c om import com.badlogic.gdx.Screen; import com.sillygames.killingSpree.KillingSpree; public abstract class AbstractScreen implements Screen { KillingSpree game; public AbstractScreen(KillingSpree game) { this.game = game; } }