0d8940899c
Added blank Access Transformer config for Forge Implemented version storage Added basic dummy FML mod container to remove the need for mod metadata file Added beggining work on Forge event system Updated and moved EnumHelper
16 lines
422 B
Java
16 lines
422 B
Java
package net.minecraftforge.event;
|
|
|
|
public enum EventPriority
|
|
{
|
|
/*Priority of event listeners, listeners will be sorted with respect to this priority level.
|
|
*
|
|
* Note:
|
|
* Due to using a ArrayList in the ListenerList,
|
|
* these need to stay in a contiguous index starting at 0. {Default ordinal}
|
|
*/
|
|
HIGHEST, //First to execute
|
|
HIGH,
|
|
NORMAL,
|
|
LOW,
|
|
LOWEST //Last to execute
|
|
}
|