summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/SkullType.java
blob: 1c3d9ae9b07ccca520be4531b9946194a0ea2b38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.bukkit;

/**
 * Represents the different types of skulls.
 * @deprecated check {@link Material} instead
 */
@Deprecated
public enum SkullType {
    SKELETON,
    WITHER,
    ZOMBIE,
    PLAYER,
    CREEPER,
    DRAGON;
}