Package com.l2client.gui.actions

Source Code of com.l2client.gui.actions.PickItemAction

package com.l2client.gui.actions;

import com.jme3.input.InputManager;
import com.jme3.input.KeyInput;
import com.jme3.input.controls.KeyTrigger;

public class PickItemAction extends Action {

  public PickItemAction(int id, String actionName) {
    super(id, actionName);
    // TODO Auto-generated constructor stub
  }

  @Override
  public void addKeyMapping(InputManager man) {
     man.addMapping("PickItemAction", new KeyTrigger(KeyInput.KEY_P));
       man.addListener(this, "PickItemAction");
  }

  @Override
  public void removeKeyMapping(InputManager man) {
    man.deleteMapping("PickItemAction");
    man.removeListener(this);
  }

  @Override
  public void onAction(String name, boolean isPressed, float tpf) {
    // TODO Auto-generated method stub
  }
}
TOP

Related Classes of com.l2client.gui.actions.PickItemAction

TOP
Copyright © 2018 www.massapi.com. 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.