GamePlayerProxy.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:1k
源码类别:

软件工程

开发平台:

Java

  1. package com.company.section4;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  * 代练者
  6.  */
  7. public class GamePlayerProxy implements IGamePlayer {
  8. private IGamePlayer gamePlayer = null;
  9. //通过构造函数传递要对谁进行代练
  10. public GamePlayerProxy(String name){
  11. try {
  12. gamePlayer = new GamePlayer(this,name);
  13. } catch (Exception e) {
  14. // TODO 异常处理
  15. }
  16. }
  17. //代练杀怪
  18. public void killBoss() {
  19. this.gamePlayer.killBoss();
  20. }
  21. //代练登录
  22. public void login(String user, String password) {
  23. this.gamePlayer.login(user, password);
  24. }
  25. //代练升级
  26. public void upgrade() {
  27. this.gamePlayer.upgrade();
  28. }
  29. }