Fix vanilla entity update packet handling (fixes #607)

This commit is contained in:
Jonas Herzig
2021-12-07 13:50:53 +01:00
parent b10b4fd25a
commit 29ef38213f
6 changed files with 178 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
package com.replaymod.replay.ext;
public interface EntityExt {
float replaymod$getTrackedYaw();
void replaymod$setTrackedYaw(float value);
float replaymod$getTrackedPitch();
void replaymod$setTrackedPitch(float value);
}