Added Player Killed event (Combat and CombatDeath packets).

This commit is contained in:
Milutinke 2022-10-26 20:53:09 +02:00
parent 01eee22921
commit 80e227c3a7
5 changed files with 65 additions and 1 deletions

View file

@ -0,0 +1,9 @@
namespace MinecraftClient.Mapping
{
public enum CombatEventType
{
EnterCombat = 0,
EndCombat,
EntityDead
}
}