Adds a field for the JoyInput implementation into JoglContext

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10471 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
jul..om 2013-03-05 21:08:18 +00:00
parent 44f7c81567
commit 974b09c47b

View File

@ -61,6 +61,7 @@ public abstract class JoglContext implements JmeContext {
protected KeyInput keyInput; protected KeyInput keyInput;
protected MouseInput mouseInput; protected MouseInput mouseInput;
protected JoyInput joyInput;
public void setSystemListener(SystemListener listener){ public void setSystemListener(SystemListener listener){
this.listener = listener; this.listener = listener;
@ -91,7 +92,7 @@ public abstract class JoglContext implements JmeContext {
} }
public JoyInput getJoyInput() { public JoyInput getJoyInput() {
return null; return joyInput;
} }
public Timer getTimer() { public Timer getTimer() {