This commit is contained in:
2026-07-09 04:15:40 -04:00
commit 6a777d54df
5376 changed files with 978510 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#include "stdafx.h"
#include "net.minecraft.world.entity.h"
#include "JumpControl.h"
JumpControl::JumpControl(Mob *mob)
{
_jump = false;
this->mob = mob;
}
void JumpControl::jump()
{
_jump = true;
}
void JumpControl::tick()
{
mob->setJumping(_jump);
_jump = false;
}