Added basic auto fishing

This commit is contained in:
ReinforceZwei 2020-03-22 20:12:06 +08:00 committed by ORelio
parent 850eae86d7
commit 51d03b9ced
11 changed files with 222 additions and 18 deletions

View file

@ -126,6 +126,8 @@ namespace MinecraftClient.Protocol
/// <param name="data">The data from the channel</param>
void OnPluginChannelMessage(string channel, byte[] data);
void OnSpawnEntity(int EntityID, int EntityType, Guid UUID, Location location);
void OnSpawnLivingEntity(int EntityID, int EntityType, Guid UUID, Location location);
void OnDestroyEntities(int[] EntityID);
@ -140,6 +142,8 @@ namespace MinecraftClient.Protocol
void OnEntityTeleport(int EntityID, Double X, Double Y, Double Z, bool onGround);
void OnEntityStatus(int EntityID, byte EntityStatus);
void SetPlayerEntityID(int EntityID);
}
}