Fork of Poseidon providing Bukkit #1060 to older Beta versions (b1.0-b1.7.3)
1package org.bukkit.plugin;
2
3/**
4 * Represents the order in which a plugin should be initialized and enabled
5 */
6public enum PluginLoadOrder {
7 /**
8 * Indicates that the plugin will be loaded at startup
9 */
10 STARTUP,
11 /**
12 * Indicates that the plugin will be loaded after the first/default world was created
13 */
14 POSTWORLD
15}