AbstractLoadedMapleLife.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.server.life;
  19. import net.sf.odinms.server.maps.AbstractAnimatedMapleMapObject;
  20. public abstract class AbstractLoadedMapleLife extends AbstractAnimatedMapleMapObject {
  21. private final int id;
  22. private int f;
  23. private boolean hide;
  24. private int fh;
  25. private int start_fh;
  26. private int cy;
  27. private int rx0;
  28. private int rx1;
  29. public AbstractLoadedMapleLife(int id) {
  30. this.id = id;
  31. }
  32. public AbstractLoadedMapleLife(AbstractLoadedMapleLife life) {
  33. this(life.getId());
  34. this.f = life.f;
  35. this.hide = life.hide;
  36. this.fh = life.fh;
  37. this.start_fh = life.fh;
  38. this.cy = life.cy;
  39. this.rx0 = life.rx0;
  40. this.rx1 = life.rx1;
  41. }
  42. public int getF() {
  43. return f;
  44. }
  45. public void setF(int f) {
  46. this.f = f;
  47. }
  48. public boolean isHidden() {
  49. return hide;
  50. }
  51. public void setHide(boolean hide) {
  52. this.hide = hide;
  53. }
  54. public int getFh() {
  55. return fh;
  56. }
  57. public void setFh(int fh) {
  58. this.fh = fh;
  59. }
  60. public int getStartFh() {
  61. return start_fh;
  62. }
  63. public int getCy() {
  64. return cy;
  65. }
  66. public void setCy(int cy) {
  67. this.cy = cy;
  68. }
  69. public int getRx0() {
  70. return rx0;
  71. }
  72. public void setRx0(int rx0) {
  73. this.rx0 = rx0;
  74. }
  75. public int getRx1() {
  76. return rx1;
  77. }
  78. public void setRx1(int rx1) {
  79. this.rx1 = rx1;
  80. }
  81. public int getId() {
  82. return id;
  83. }
  84. }