Back to project page bbg-gdx-project-setup.
The source code is released under:
MIT License
If you think the Android project bbg-gdx-project-setup 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.bluebananagames.gametemplate.input; //from w w w.j a v a2s . co m public abstract class InputHandler { private InputMapping mapping; public abstract boolean isControlPressed(Control control); public InputMapping getMapping() { return mapping; } public void setMapping(InputMapping mapping) { this.mapping = mapping; } }