Deprecate some methods which are likely to require changes in the future

Ref http://mojang.com/2016/08/minecraft-snapshot-16w32a/

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot
2016-08-12 18:22:33 +10:00
parent e74f8f6b5e
commit 24f6f4f05c
4 changed files with 21 additions and 1 deletions

View File

@@ -9,14 +9,18 @@ public interface Skeleton extends Monster {
* Gets the current type of this skeleton.
*
* @return Current type
* @deprecated Entity subtypes will be separate entities in a future Minecraft release
*/
@Deprecated
public SkeletonType getSkeletonType();
/**
* Sets the new type of this skeleton.
*
* @param type New type
* @deprecated Entity subtypes will be separate entities in a future Minecraft release
*/
@Deprecated
public void setSkeletonType(SkeletonType type);
/*