EffectCause.java 347 B

123456789101112131415161718192021
  1. package me.km.effects;
  2. public enum EffectCause
  3. {
  4. /**
  5. * the effect was started by a scroll
  6. */
  7. SCROLL,
  8. /**
  9. * the effect was started by a wand
  10. */
  11. WAND,
  12. /**
  13. * the effect was started by a skill
  14. */
  15. SKILL,
  16. /**
  17. * the effect was started by an item, no event is thrown
  18. */
  19. NOTHING
  20. }