Arcturus-Community/src/main/java/com/eu/habbo/plugin/EventPriority.java

27 lines
305 B
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.plugin;
2019-05-26 20:14:53 +02:00
public enum EventPriority {
2018-07-08 23:32:00 +02:00
2018-07-06 15:30:00 +02:00
LOWEST(0),
2018-07-08 23:32:00 +02:00
2018-07-06 15:30:00 +02:00
LOW(1),
2018-07-08 23:32:00 +02:00
2018-07-06 15:30:00 +02:00
NORMAL(2),
2018-07-08 23:32:00 +02:00
2018-07-06 15:30:00 +02:00
HIGH(3),
2018-07-08 23:32:00 +02:00
2018-07-06 15:30:00 +02:00
HIGHEST(4),
2018-07-08 23:32:00 +02:00
2018-07-06 15:30:00 +02:00
MONITOR(5);
private final int slot;
2019-05-26 20:14:53 +02:00
EventPriority(int slot) {
2018-07-06 15:30:00 +02:00
this.slot = slot;
}
2019-05-26 20:14:53 +02:00
public int getSlot() {
2018-07-06 15:30:00 +02:00
return this.slot;
}
}