Package com.aem.sticky.button

Examples of com.aem.sticky.button.CentralisedTextButton


      Sound buttonSound
  ) throws SlickException {
    float x = container.getWidth() / 2;
    float y = container.getHeight() / 2 - 25;
    this._levelSelectButton =
        new CentralisedTextButton(x, y, STR_SELECT_LEVEL, buttonSound);
   
    this._buttonListener.add(this._levelSelectButton);
   
    this._levelSelectButton.addListener(new ClickListener() {
     
View Full Code Here


      Sound buttonSound
  ) throws SlickException {
   
    float x = container.getWidth() / 2;
    float y = container.getHeight() / 2 + 25;
    this._exitButton = new CentralisedTextButton(x, y, STR_EXIT, buttonSound);
   
    this._buttonListener.add(this._exitButton);
   
    this._exitButton.addListener(new ClickListener() {
     
View Full Code Here

TOP

Related Classes of com.aem.sticky.button.CentralisedTextButton

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.