001 package net.minecraftforge.event;
002
003 public enum EventPriority
004 {
005 /*Priority of event listeners, listeners will be sorted with respect to this priority level.
006 *
007 * Note:
008 * Due to using a ArrayList in the ListenerList,
009 * these need to stay in a contiguous index starting at 0. {Default ordinal}
010 */
011 HIGHEST, //First to execute
012 HIGH,
013 NORMAL,
014 LOW,
015 LOWEST //Last to execute
016 }