Skip to content
Snippets Groups Projects

Base system

Merged Dallin Nickel (djn011) requested to merge Base_System into master
1 file
+ 10
0
Compare changes
  • Side-by-side
  • Inline
+ 10
0
package model;
public interface HotkeyDetector {
/**
* Detects if a hotkey with the given id was pressed.
* @param id The id of the hotkey which is checked.
* @return If the hotkey was pressed.
*/
boolean wasPressed(int id);
}
Loading