summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/PortalType.java
blob: 427cfbb8b542215c5d9993056e0cadf18ab9bd4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.bukkit;

/**
 * Represents various types of portals that can be made in a world.
 */
public enum PortalType {

    /**
     * This is a Nether portal, made of obsidian.
     */
    NETHER,

    /**
     * This is an Ender portal.
     */
    ENDER,

    /**
     * This is a custom Plugin portal.
     */
    CUSTOM;
}