// draws game
 private void draw() {
   gsm.draw(g);
 }
 // updates game
 private void update() {
   gsm.update();
   Keys.update();
 }