SkillMacro.java
上传用户:gwt600
上传日期:2021-06-03
资源大小:704k
文件大小:2k
源码类别:

游戏

开发平台:

Java

  1. /*
  2. This file is part of the OdinMS Maple Story Server
  3. Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> 
  4. Matthias Butz <matze@odinms.de>
  5. Jan Christian Meyer <vimes@odinms.de>
  6. This program is free software: you can redistribute it and/or modify
  7. it under the terms of the GNU Affero General Public License version 3
  8. as published by the Free Software Foundation. You may not use, modify
  9. or distribute this program under any other version of the
  10. GNU Affero General Public License.
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU Affero General Public License for more details.
  15. You should have received a copy of the GNU Affero General Public License
  16. along with this program.  If not, see <http://www.gnu.org/licenses/>.
  17.  */
  18. package net.sf.odinms.client;
  19. public class SkillMacro {
  20.     private int macroId;
  21.     private int skill1;
  22.     private int skill2;
  23.     private int skill3;
  24.     private String name;
  25.     private int shout;
  26.     private int position;
  27.     public SkillMacro(int skill1, int skill2, int skill3, String name, int shout, int position) {
  28.         this.skill1 = skill1;
  29.         this.skill2 = skill2;
  30.         this.skill3 = skill3;
  31.         this.name = name;
  32.         this.shout = shout;
  33.         this.position = position;
  34.     }
  35.     public int getMacroId() {
  36.         return macroId;
  37.     }
  38.     public int getSkill1() {
  39.         return skill1;
  40.     }
  41.     public int getSkill2() {
  42.         return skill2;
  43.     }
  44.     public int getSkill3() {
  45.         return skill3;
  46.     }
  47.     public String getName() {
  48.         return name;
  49.     }
  50.     public int getShout() {
  51.         return shout;
  52.     }
  53.     public int getPosition() {
  54.         return position;
  55.     }
  56.     public void setMacroId(int macroId) {
  57.         this.macroId = macroId;
  58.     }
  59.     public void setSkill1(int skill1) {
  60.         this.skill1 = skill1;
  61.     }
  62.     public void setSkill2(int skill2) {
  63.         this.skill2 = skill2;
  64.     }
  65.     public void setSkill3(int skill3) {
  66.         this.skill3 = skill3;
  67.     }
  68.     public void setName(String name) {
  69.         this.name = name;
  70.     }
  71.     public void setShout(int shout) {
  72.         this.shout = shout;
  73.     }
  74.     public void setPosition(int position) {
  75.         this.position = position;
  76.     }
  77. }