All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pacman.controllers.KeyBoardInput Maven / Gradle / Ivy

There is a newer version: 2.0.1.0
Show newest version
package pacman.controllers;

import java.awt.event.KeyAdapter;
import java.awt.event.KeyEvent;

/*
 * A simple key adapter used by the HumanController to play the game.
 */
public class KeyBoardInput extends KeyAdapter {
    private int key;

    public int getKey() {
        return key;
    }

    public void keyPressed(KeyEvent e) {
        key = e.getKeyCode();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy