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

30 lines
313 B
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.plugin;
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-03-18 02:22:00 +01:00
EventPriority(int slot)
2018-07-06 15:30:00 +02:00
{
this.slot = slot;
}
public int getSlot()
{
return this.slot;
}
}