typesforbukkit
Version:
Types For Bukkit
20 lines (18 loc) • 515 B
text/typescript
// API Link: https://tfb.neocities.org/1.16.5/org/bukkit/SkullType
namespace org.bukkit {
/** @deprecated check Material instead. @description Represents the different types of skulls */
export enum SkullType {
/** @deprecated */
CREEPER,
/** @deprecated */
DRAGON,
/** @deprecated */
PLAYER,
/** @deprecated */
SKELETON,
/** @deprecated */
WITHER,
/** @deprecated */
ZOMBIE
}
}