Package org.seattlegamer.spacegame.messages

Examples of org.seattlegamer.spacegame.messages.MenuExecution


      this.scroll(1);
      this.throttleScrolling();
    }
   
    if(keyInput.isKeyInputActive(KeyEvent.VK_ENTER)) {
      this.bus.broadcast(new MenuExecution(this.selectionIndex));
    }

    if(keyInput.isKeyInputActive(KeyEvent.VK_ESCAPE)) {
      this.bus.broadcast(new StateChange(GameState.class));
    }
View Full Code Here

TOP

Related Classes of org.seattlegamer.spacegame.messages.MenuExecution

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.