EventData.java 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * $Header: EventData.java
  3. *
  4. * $Author: SarEvoK
  5. * Added copyright notice
  6. *
  7. *
  8. * This program is free software: you can redistribute it and/or modify it under
  9. * the terms of the GNU General Public License as published by the Free Software
  10. * Foundation, either version 3 of the License, or (at your option) any later
  11. * version.
  12. *
  13. * This program is distributed in the hope that it will be useful, but WITHOUT
  14. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  15. * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  16. * details.
  17. *
  18. * You should have received a copy of the GNU General Public License along with
  19. * this program. If not, see <http://www.gnu.org/licenses/>.
  20. */
  21. package com.l2jserver.util;
  22. import java.util.LinkedList;
  23. public class EventData
  24. {
  25. public int eventX;
  26. public int eventY;
  27. public int eventZ;
  28. public int eventKarma;
  29. public int eventPvpKills;
  30. public int eventPkKills;
  31. public String eventTitle;
  32. public LinkedList<String> kills = new LinkedList<String>();
  33. public boolean eventSitForced = false;
  34. public EventData(int pEventX, int pEventY, int pEventZ, int pEventkarma, int pEventpvpkills,
  35. int pEventpkkills, String pEventTitle, LinkedList<String> pKills,
  36. boolean pEventSitForced)
  37. {
  38. eventX = pEventX;
  39. eventY = pEventY;
  40. eventZ = pEventZ;
  41. eventKarma = pEventkarma;
  42. eventPvpKills = pEventpvpkills;
  43. eventPkKills = pEventpkkills;
  44. eventTitle = pEventTitle;
  45. kills = pKills;
  46. eventSitForced = pEventSitForced;
  47. }
  48. }