Skip to content

Commit

Permalink
Implement entity properties support
Browse files Browse the repository at this point in the history
  • Loading branch information
yuxuanchiadm committed Jul 17, 2024
1 parent f8c0b8f commit 7fb89a3
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/main/java/cn/nukkit/Player.java
Original file line number Diff line number Diff line change
Expand Up @@ -6557,4 +6557,28 @@ public void sendFogStack(String... fogStack) {
*/
public void requestCloseFormWindow() {
}

/**
* @since 1.17
*/
public void sendMobPropertyInt(long entityRuntimeId, String propertyName, int value) {
}

/**
* @since 1.17
*/
public void sendMobPropertyFloat(long entityRuntimeId, String propertyName, float value) {
}

/**
* @since 1.17
*/
public void sendMobPropertyBool(long entityRuntimeId, String propertyName, boolean value) {
}

/**
* @since 1.17
*/
public void sendMobPropertyEnum(long entityRuntimeId, String propertyName, String value) {
}
}

0 comments on commit 7fb89a3

Please sign in to comment.